Will-Lo commented on code in PR #3516:
URL: https://github.com/apache/gobblin/pull/3516#discussion_r889333264


##########
gobblin-service/src/main/java/org/apache/gobblin/service/modules/scheduler/GobblinServiceJobScheduler.java:
##########
@@ -322,6 +326,18 @@ public AddSpecResponse onAddSpec(Spec addedSpec) {
       return new AddSpecResponse<>(response);
     }
 
+    // Check quota limits against run immediately flows or adhoc flows before 
saving the schedule
+    if (!jobConfig.containsKey(ConfigurationKeys.JOB_SCHEDULE_KEY) || 
PropertiesUtils.getPropAsBoolean(jobConfig, 
ConfigurationKeys.FLOW_RUN_IMMEDIATELY, "false")) {
+      try {
+        if (quotaManager.isPresent()) {
+          quotaManager.get().checkQuota(dag.getNodes().get(0), false);

Review Comment:
   It wouldn't since in the QuotaManager there's a check against duplicate 
dagIds to not double increment if the dag was already added. I can add a 
comment here to reflect this behavior. It seems a bit hacky but I couldn't 
think of another way of handling this scenario since the dagmanager 
asynchronous design doesn't make it easy to validate that a flow is running on 
the specExecutor before returning a http status code.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to