Skip to content

Commit

Permalink
try removing datadog pin override
Browse files Browse the repository at this point in the history
  • Loading branch information
William Parsley committed Jan 31, 2024
1 parent 61d5820 commit fe2af40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion go/internal/feast/featurestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func NewFeatureStore(config *registry.RepoConfig, callback transformation.Transf
}
sanitizedProjectName := strings.Replace(config.Project, "_", "-", -1)
productName := os.Getenv("PRODUCT")
endpoint := fmt.Sprintf("%s-transformations.%s.cluster.local:80", sanitizedProjectName, productName)
endpoint := fmt.Sprintf("%s-transformations.%s.svc.cluster.local:80", sanitizedProjectName, productName)
transformationService, _ := transformation.NewGrpcTransformationService(config, endpoint)

return &FeatureStore{
Expand Down
5 changes: 0 additions & 5 deletions sdk/python/feast/transformation_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,6 @@ def TransformFeatures(self, request, context):
def start_server(store: FeatureStore, port: int):
log.info("Starting server..")

# Start Datadog tracing
patch(grpc=True)
custom_tracer = Tracer()
Pin.override(grpc.Server, service='TransformationService', tracer=custom_tracer)

server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
add_TransformationServiceServicer_to_server(TransformationServer(store), server)

Expand Down

0 comments on commit fe2af40

Please sign in to comment.