Github user tweise commented on a diff in the pull request:
https://github.com/apache/incubator-apex-core/pull/274#discussion_r56537836
--- Diff: api/src/main/java/com/datatorrent/api/Context.java ---
@@ -475,6 +475,21 @@
* Only supports string codecs that have a constructor with no
arguments
*/
Attribute<Map<Class<?>, Class<? extends StringCodec<?>>>>
STRING_CODECS = new Attribute<Map<Class<?>, Class<? extends
StringCodec<?>>>>(new Map2String<Class<?>, Class<? extends
StringCodec<?>>>(",", "=", new Class2String<Object>(), new
Class2String<StringCodec<?>>()));
+
+ /**
+ * The number of consecutive container failures that should lead to
+ * blacklisting of nodes by application master
+ */
+ Attribute<Integer> MAX_CONSECUTIVE_CONTAINER_FAILURES_FOR_BLCKLIST =
new Attribute<Integer>(Integer.MAX_VALUE);
--- End diff --
Spelling
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---