+
Tenzir Pipelines
- Controls a pipeline to run things.{" "}
+ Controls the Tenzir pipeline operations.{" "}
-
+
{pipelines.map((pipeline, index) => {
var bgColor = "#27292d";
@@ -5063,7 +5066,7 @@ If you're interested, please let me know a time that works for you, or set up a
);
})}
- )}*/}
+ )}
) : null;
diff --git a/functions/onprem/orborus/go.mod b/functions/onprem/orborus/go.mod
index 6de48847..2aa127d4 100644
--- a/functions/onprem/orborus/go.mod
+++ b/functions/onprem/orborus/go.mod
@@ -8,7 +8,7 @@ require (
github.com/docker/docker v26.1.0+incompatible
github.com/docker/go-connections v0.5.0
github.com/satori/go.uuid v1.2.0
- github.com/shuffle/shuffle-shared v0.6.27
+ github.com/shuffle/shuffle-shared v0.6.29
k8s.io/api v0.30.0
k8s.io/apimachinery v0.30.0
k8s.io/client-go v0.30.0
diff --git a/functions/onprem/orborus/orborus.go b/functions/onprem/orborus/orborus.go
index 25fc4f27..f4237c43 100755
--- a/functions/onprem/orborus/orborus.go
+++ b/functions/onprem/orborus/orborus.go
@@ -2095,9 +2095,7 @@ func handlePipeline(incRequest shuffle.ExecutionRequest) error {
if err != nil {
log.Printf("[ERROR] Failed Deleting Pipeline %s", err)
return err
- } else {
- log.Printf("[INFO] successfully deleted the Pipeline: %s", pipelineId)
- }
+ }
} else if incRequest.Type == "PIPELINE_STOP" {
log.Printf("[INFO] Should stop the pipeline %#v", identifier)
pipelineId, err := searchPipeline(identifier)
@@ -2305,7 +2303,7 @@ func createPipeline(command, identifier string) (string, error) {
if err != nil {
if strings.Contains(fmt.Sprintf("%s", err), "no existing pipeline found") {
- log.Printf("[INFO] No existing pipeline found with name: %s. Creating a new one!", identifier)
+ log.Printf("[INFO] No existing pipeline found with id: %s. Creating a new one!", identifier)
} else {
log.Printf("[ERROR] Failed to search for existing pipeline but continuing anyway : %s", err)
}
@@ -2331,7 +2329,6 @@ func createPipeline(command, identifier string) (string, error) {
command = command[:startIndex] + baseUrl + command[endIndex:]
}
}
-
requestBody := map[string]interface{}{
"definition": command,
"name": identifier,
diff --git a/functions/onprem/worker/go.mod b/functions/onprem/worker/go.mod
index 6185ebda..248a40f5 100644
--- a/functions/onprem/worker/go.mod
+++ b/functions/onprem/worker/go.mod
@@ -6,7 +6,7 @@ require (
github.com/docker/docker v26.1.0+incompatible
github.com/gorilla/mux v1.8.1
github.com/satori/go.uuid v1.2.0
- github.com/shuffle/shuffle-shared v0.6.27
+ github.com/shuffle/shuffle-shared v0.6.30
k8s.io/api v0.30.0
k8s.io/apimachinery v0.30.0
k8s.io/client-go v0.30.0
diff --git a/functions/onprem/worker/worker.go b/functions/onprem/worker/worker.go
index eedd8e17..fe145066 100644
--- a/functions/onprem/worker/worker.go
+++ b/functions/onprem/worker/worker.go
@@ -2981,7 +2981,7 @@ func getStreamResultsWrapper(client *http.Client, req *http.Request, workflowExe
func main() {
// Elasticsearch necessary to ensure we'ren ot running with Datastore configurations for minimal/maximal data sizes
// Recursive import kind of :)
- _, err := shuffle.RunInit(*shuffle.GetDatastore(), *shuffle.GetStorage(), "", "worker", true, "elasticsearch")
+ _, err := shuffle.RunInit(*shuffle.GetDatastore(), *shuffle.GetStorage(), "", "worker", true, "elasticsearch", false, 0)
if err != nil {
if !strings.Contains(fmt.Sprintf("%s", err), "no such host") {
log.Printf("[ERROR] Failed to run worker init: %s", err)
diff --git a/shuffle-apps/README.md b/shuffle-apps/README.md
index f30690cd..59ad076a 100755
--- a/shuffle-apps/README.md
+++ b/shuffle-apps/README.md
@@ -1,5 +1,5 @@
# Shuffle Apps
* This folder is by default meant to be empty
* This folder is meant for quick development of apps (single button hot-loading)
-* Some shuffle apps can be found at https://github.com/frikky/shuffle-apps
+* Some shuffle apps can be found at https://github.com/shuffle/python-apps