├── .circleci └── config.yml ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── changes.md ├── doc ├── api │ ├── css │ │ └── default.css │ ├── index.html │ ├── js │ │ ├── jquery.min.js │ │ └── page_effects.js │ ├── onyx.api.html │ ├── onyx.checkpoint.html │ ├── onyx.compression.nippy.html │ ├── onyx.doc.html │ ├── onyx.extensions.html │ ├── onyx.flow-conditions.fc-compile.html │ ├── onyx.flow-conditions.fc-routing.html │ ├── onyx.gc.html │ ├── onyx.information-model.html │ ├── onyx.interop.html │ ├── onyx.job.html │ ├── onyx.log.commands.abort-join-cluster.html │ ├── onyx.log.commands.accept-join-cluster.html │ ├── onyx.log.commands.add-virtual-peer.html │ ├── onyx.log.commands.common.html │ ├── onyx.log.commands.complete-job.html │ ├── onyx.log.commands.gc.html │ ├── onyx.log.commands.group-leave-cluster.html │ ├── onyx.log.commands.kill-job.html │ ├── onyx.log.commands.leave-cluster.html │ ├── onyx.log.commands.notify-join-cluster.html │ ├── onyx.log.commands.prepare-join-cluster.html │ ├── onyx.log.commands.set-replica.html │ ├── onyx.log.commands.submit-job.html │ ├── onyx.log.curator.html │ ├── onyx.log.entry.html │ ├── onyx.log.failure-detector.html │ ├── onyx.log.replica-invariants.html │ ├── onyx.log.replica.html │ ├── onyx.log.zookeeper.html │ ├── onyx.messaging.aeron-media-driver.html │ ├── onyx.messaging.aeron.embedded-media-driver.html │ ├── onyx.messaging.aeron.endpoint-status.html │ ├── onyx.messaging.aeron.messaging-group.html │ ├── onyx.messaging.aeron.publisher.html │ ├── onyx.messaging.aeron.status-publisher.html │ ├── onyx.messaging.aeron.subscriber.html │ ├── onyx.messaging.aeron.utils.html │ ├── onyx.messaging.messenger-state.html │ ├── onyx.messaging.protocols.endpoint-status.html │ ├── onyx.messaging.protocols.messenger.html │ ├── onyx.messaging.protocols.publisher.html │ ├── onyx.messaging.protocols.status-publisher.html │ ├── onyx.messaging.protocols.subscriber.html │ ├── onyx.messaging.serialize.html │ ├── onyx.messaging.short-circuit.html │ ├── onyx.monitoring.custom-monitoring.html │ ├── onyx.monitoring.measurements.html │ ├── onyx.monitoring.metrics-monitoring.html │ ├── onyx.monitoring.no-op-monitoring.html │ ├── onyx.peer.communicator.html │ ├── onyx.peer.constants.html │ ├── onyx.peer.coordinator.html │ ├── onyx.peer.function.html │ ├── onyx.peer.liveness.html │ ├── onyx.peer.log-version.html │ ├── onyx.peer.operation.html │ ├── onyx.peer.peer-group-manager.html │ ├── onyx.peer.queryable-state-manager.html │ ├── onyx.peer.resume-point.html │ ├── onyx.peer.status.html │ ├── onyx.plugin.messaging-output.html │ ├── onyx.plugin.null.html │ ├── onyx.plugin.protocols.html │ ├── onyx.plugin.seq.html │ ├── onyx.protocol.task-state.html │ ├── onyx.query.html │ ├── onyx.refinements.html │ ├── onyx.scheduling.balanced-job-scheduler.html │ ├── onyx.scheduling.balanced-task-scheduler.html │ ├── onyx.scheduling.colocated-task-scheduler.html │ ├── onyx.scheduling.common-job-scheduler.html │ ├── onyx.scheduling.common-task-scheduler.html │ ├── onyx.scheduling.greedy-job-scheduler.html │ ├── onyx.scheduling.percentage-job-scheduler.html │ ├── onyx.scheduling.percentage-task-scheduler.html │ ├── onyx.schema.html │ ├── onyx.seq.information-model.html │ ├── onyx.state.lmdb.html │ ├── onyx.state.open-checkpoint-db.html │ ├── onyx.state.protocol.db.html │ ├── onyx.state.serializers.checkpoint.html │ ├── onyx.state.serializers.group-decoder.html │ ├── onyx.state.serializers.group-encoder.html │ ├── onyx.state.serializers.group-reverse-decoder.html │ ├── onyx.state.serializers.group-reverse-encoder.html │ ├── onyx.state.serializers.state-entry-key-decoder.html │ ├── onyx.state.serializers.state-entry-key-encoder.html │ ├── onyx.state.serializers.utils.html │ ├── onyx.static.default-vals.html │ ├── onyx.static.path-seq.html │ ├── onyx.static.planning.html │ ├── onyx.static.swap-pair.html │ ├── onyx.static.util.html │ ├── onyx.static.uuid.html │ ├── onyx.storage.s3.html │ ├── onyx.system.html │ ├── onyx.tasks.core-async.html │ ├── onyx.tasks.function.html │ ├── onyx.tasks.null.html │ ├── onyx.tasks.seq.html │ ├── onyx.test-helper.html │ ├── onyx.triggers.html │ ├── onyx.types.html │ ├── onyx.windowing.aggregation.html │ ├── onyx.windowing.units.html │ └── onyx.windowing.window-extensions.html ├── design │ ├── allocate-examples │ │ └── example-1.md │ ├── components.html │ └── proposals │ │ ├── batch_primitives.md │ │ ├── coordination_scalability.adoc │ │ ├── serialization.md │ │ ├── task_lifecycle.md │ │ └── windowing.md ├── developers-guide │ ├── branch-policy.md │ ├── deployment-process.md │ ├── plugin │ │ └── release.sh │ └── release-checklist.md ├── images │ ├── breeze-125.png │ ├── cognician.png │ ├── indaba.png │ ├── lockedon.png │ ├── logo │ │ ├── high-res.png │ │ ├── multi.jpg │ │ └── yourkit.png │ ├── modnakasta.png │ └── yapster.png ├── release-notes │ ├── 0.4.0.md │ ├── 0.5.0.md │ ├── 0.6.0.md │ ├── 0.7.0.md │ └── 0.8.0.md └── user-guide │ ├── abs │ └── barrier-example-1 │ │ ├── example.graffle │ │ ├── step$.png │ │ ├── step1.png │ │ ├── step2.png │ │ ├── step3.png │ │ └── step4.png │ ├── aggregation-state-management.adoc │ ├── apis.adoc │ ├── architecture-low-level-design.adoc │ ├── backpressure.adoc │ ├── concepts.adoc │ ├── core-async-plugin.adoc │ ├── deployment.adoc │ ├── environment.adoc │ ├── examples.adoc │ ├── faq.adoc │ ├── flow-conditions.adoc │ ├── functions.adoc │ ├── img │ ├── 1-peer-1-task.png │ ├── 1-peer-dies-acking.png │ ├── 1-peer-dies-active.png │ ├── 1-peer-dies-completing.png │ ├── 1-peer-dies-sealing.png │ ├── 1-peer-times-out.png │ ├── 2-peers-1-dies-sealing.png │ ├── 2-peers-1-joins-late.png │ ├── 2-peers-1-joins-while-sealing.png │ ├── 2-peers-1-waits.png │ ├── client-side-load-balancing.png │ ├── diagram-1.png │ ├── diagram-10.png │ ├── diagram-11.png │ ├── diagram-12.png │ ├── diagram-13.png │ ├── diagram-14.png │ ├── diagram-15.png │ ├── diagram-16.png │ ├── diagram-17.png │ ├── diagram-2.png │ ├── diagram-3.png │ ├── diagram-4.png │ ├── diagram-5.png │ ├── diagram-6.png │ ├── diagram-7.png │ ├── diagram-8.png │ ├── diagram-9.png │ ├── election.png │ ├── messaging-summary.png │ └── peer-failure-reorder.png │ ├── index.adoc │ ├── information-model.adoc │ ├── join-examples │ ├── example-1.md │ ├── example-2.md │ ├── example-3.md │ ├── example-4.md │ ├── example-5.md │ ├── example-6.md │ └── example-7.md │ ├── leave-examples │ ├── example-1.md │ └── example-2.md │ ├── lifecycles.adoc │ ├── logging.adoc │ ├── messaging.adoc │ ├── monitoring.adoc │ ├── performance-tuning.adoc │ ├── plugins.adoc │ ├── production-check-list.adoc │ ├── resume-points.adoc │ ├── scheduling.adoc │ ├── seq-plugin.adoc │ ├── subscription.adoc │ ├── testing-onyx-jobs.adoc │ ├── triggers.adoc │ ├── watermarks.adoc │ ├── what-does-it-offer.adoc │ └── windowing.adoc ├── project.clj ├── resources └── onyx-schema.xml ├── scripts ├── circle-runner.sh ├── generate_sbe.sh ├── reflection-check.sh ├── release.sh └── run_gen_tests.sh ├── src └── onyx │ ├── api.clj │ ├── checkpoint.clj │ ├── compression │ └── nippy.clj │ ├── doc.cljc │ ├── extensions.cljc │ ├── flow_conditions │ ├── fc_compile.cljc │ └── fc_routing.cljc │ ├── gc.clj │ ├── information_model.cljc │ ├── interop.clj │ ├── job.cljc │ ├── lifecycles │ └── lifecycle_compile.cljc │ ├── log │ ├── commands │ │ ├── abort_join_cluster.clj │ │ ├── accept_join_cluster.clj │ │ ├── add_virtual_peer.clj │ │ ├── common.clj │ │ ├── complete_job.clj │ │ ├── gc.clj │ │ ├── group_leave_cluster.clj │ │ ├── kill_job.clj │ │ ├── leave_cluster.clj │ │ ├── notify_join_cluster.clj │ │ ├── prepare_join_cluster.clj │ │ ├── set_replica.clj │ │ └── submit_job.clj │ ├── curator.clj │ ├── entry.clj │ ├── failure_detector.clj │ ├── replica.clj │ ├── replica_invariants.clj │ └── zookeeper.clj │ ├── messaging │ ├── aeron │ │ ├── embedded_media_driver.clj │ │ ├── endpoint_status.clj │ │ ├── int2objectmap.clj │ │ ├── messaging_group.clj │ │ ├── messenger.clj │ │ ├── publisher.clj │ │ ├── status_publisher.clj │ │ ├── subscriber.clj │ │ └── utils.clj │ ├── aeron_media_driver.clj │ ├── common.clj │ ├── messenger_state.clj │ ├── protocols │ │ ├── endpoint_status.clj │ │ ├── messenger.cljc │ │ ├── publisher.clj │ │ ├── status_publisher.clj │ │ └── subscriber.clj │ ├── serialize.clj │ ├── serializers │ │ ├── barrier_decoder.clj │ │ ├── barrier_encoder.clj │ │ ├── base_decoder.clj │ │ ├── base_encoder.clj │ │ ├── heartbeat_decoder.clj │ │ ├── heartbeat_encoder.clj │ │ ├── helpers.clj │ │ ├── local_segment_decoder.clj │ │ ├── local_segment_encoder.clj │ │ ├── ready_decoder.clj │ │ ├── ready_encoder.clj │ │ ├── ready_reply_decoder.clj │ │ ├── ready_reply_encoder.clj │ │ ├── segment_decoder.clj │ │ └── segment_encoder.clj │ └── short_circuit.clj │ ├── monitoring │ ├── custom_monitoring.clj │ ├── measurements.clj │ ├── metrics_monitoring.clj │ └── no_op_monitoring.clj │ ├── peer │ ├── communicator.clj │ ├── constants.clj │ ├── coordinator.clj │ ├── function.clj │ ├── grouping.cljc │ ├── liveness.clj │ ├── log_version.cljc │ ├── operation.cljc │ ├── peer_group_manager.clj │ ├── queryable_state_manager.clj │ ├── read_batch.clj │ ├── resume_point.clj │ ├── status.clj │ ├── task_compile.clj │ ├── task_lifecycle.clj │ ├── transform.clj │ ├── virtual_peer.clj │ └── window_state.cljc │ ├── plugin │ ├── core_async.cljc │ ├── messaging_output.clj │ ├── null.cljc │ ├── protocols.cljc │ └── seq.cljc │ ├── protocol │ └── task_state.cljc │ ├── query.clj │ ├── refinements.cljc │ ├── scheduling │ ├── balanced_job_scheduler.clj │ ├── balanced_task_scheduler.clj │ ├── colocated_task_scheduler.clj │ ├── common_job_scheduler.clj │ ├── common_task_scheduler.clj │ ├── greedy_job_scheduler.clj │ ├── percentage_job_scheduler.clj │ └── percentage_task_scheduler.clj │ ├── schema.cljc │ ├── seq │ └── information_model.cljc │ ├── state │ ├── lmdb.clj │ ├── memory.cljc │ ├── open_checkpoint_db.clj │ ├── protocol │ │ └── db.cljc │ └── serializers │ │ ├── checkpoint.clj │ │ ├── group_decoder.clj │ │ ├── group_encoder.clj │ │ ├── group_reverse_decoder.clj │ │ ├── group_reverse_encoder.clj │ │ ├── heartbeat_encoder.clj │ │ ├── state_entry_key_decoder.clj │ │ ├── state_entry_key_encoder.clj │ │ ├── utils.clj │ │ ├── windowing_key_decoder.clj │ │ └── windowing_key_encoder.clj │ ├── static │ ├── analyzer.cljc │ ├── default_vals.cljc │ ├── helpful_job_errors.cljc │ ├── logging.clj │ ├── logging_configuration.clj │ ├── path_seq.cljc │ ├── planning.cljc │ ├── pretty_print.cljc │ ├── swap_pair.clj │ ├── util.cljc │ ├── uuid.clj │ └── validation.cljc │ ├── storage │ └── s3.clj │ ├── system.clj │ ├── tasks │ ├── core_async.clj │ ├── function.clj │ ├── null.clj │ └── seq.clj │ ├── test_helper.clj │ ├── triggers.cljc │ ├── types.cljc │ └── windowing │ ├── aggregation.cljc │ ├── units.cljc │ ├── window_compile.cljc │ ├── window_extensions.cljc │ └── window_id.cljc ├── test-resources ├── log4j.properties └── test-config.edn └── test └── onyx ├── analyzer_test.clj ├── doc_test.clj ├── flow_conditions ├── flow_conditions_gen_test.clj └── flow_pred_test.clj ├── gc └── gc_multiple_replicas_test.clj ├── generative ├── lifecycles_gen_test.clj ├── manual_shrink.clj └── peer_model.clj ├── log ├── abort_test.clj ├── accept_join_cluster_test.clj ├── curator_test.clj ├── flux_policy_test.clj ├── full_test.clj ├── gc_log_test.clj ├── gc_test.clj ├── generative_group_test.clj ├── generative_peer_join.clj ├── generators.clj ├── group_leave_cluster_test.clj ├── killed_job_test.clj ├── log_test.clj ├── notify_join_cluster_test.clj ├── notify_test.clj ├── prepare_join_cluster_test.clj ├── pulse_test.clj └── submit_job_test.clj ├── messaging ├── aeron_heartbeat_test.clj └── protocol_test.clj ├── mocked ├── failure_detector.clj └── zookeeper.clj ├── peer ├── abs_merge_test.clj ├── abs_plugin_test.clj ├── apply_fn_exception_test.clj ├── automatic_kill_test.clj ├── batch_function_test.clj ├── catalog_params_test.clj ├── colors_flow_test.clj ├── custom_compression_test.clj ├── dag_test.clj ├── flow_exception_retry_test.clj ├── flow_exception_test.clj ├── flow_lifecycle_exception_test.clj ├── flow_pred_exception_test.clj ├── flow_retry_test.clj ├── fn_grouping_test.clj ├── idempotent_job_test.clj ├── join_test.clj ├── killed_job_test.clj ├── kw_grouping_test.clj ├── leaf_function_test.clj ├── lifecycle_exception_test.clj ├── lifecycles_test.clj ├── max_peers_test.clj ├── min_peers_test.clj ├── monitoring_test.clj ├── multi_input_test.clj ├── params_test.clj ├── people_flow_test.clj ├── resume_points_test.clj ├── serialized_exception_test.clj ├── short_circuit_test.clj ├── stuck_peer_test.clj └── tail_params_test.clj ├── scheduler ├── balanced_grouping_generative_test.clj ├── colocation_test.clj ├── percentage_grouping_generative_test.clj ├── percentage_multi_job_generative_test.clj ├── percentage_multi_job_test.clj ├── scheduler_test.clj ├── tagged_constraints_test.clj └── two_job_test.clj ├── state ├── checkpoint_serializer_test.clj ├── state_store_gen_test.clj └── state_store_test.clj ├── stress └── checkpoint_test.clj ├── test_boilerplate.clj ├── triggers ├── trigger_percentile_watermark_test.clj ├── trigger_punctuation_test.clj ├── trigger_segment_test.clj └── trigger_timer_test.clj ├── validation_test.clj └── windowing ├── aggregation_average_test.clj ├── aggregation_conj_test.clj ├── aggregation_count_test.clj ├── aggregation_grouping_test.clj ├── aggregation_max_test.clj ├── aggregation_min_test.clj ├── aggregation_ordered_log_test.clj ├── basic_windowing_crash_test.clj ├── collect_by_key_test.clj ├── emit_aggregate_test.clj ├── reduce_test.clj ├── wid_generative_test.clj ├── window_exceptions_test.clj ├── window_extensions_generative_test.clj ├── window_fixed_test.clj ├── window_global_test.clj ├── window_max_test.clj ├── window_session_merge_test.clj ├── window_session_minimum_test.clj ├── window_session_test.clj ├── window_sliding_test.clj └── window_watermark_test.clj /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | changes.md merge=union 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/README.md -------------------------------------------------------------------------------- /changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/changes.md -------------------------------------------------------------------------------- /doc/api/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/css/default.css -------------------------------------------------------------------------------- /doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/index.html -------------------------------------------------------------------------------- /doc/api/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/js/jquery.min.js -------------------------------------------------------------------------------- /doc/api/js/page_effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/js/page_effects.js -------------------------------------------------------------------------------- /doc/api/onyx.api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.api.html -------------------------------------------------------------------------------- /doc/api/onyx.checkpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.checkpoint.html -------------------------------------------------------------------------------- /doc/api/onyx.compression.nippy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.compression.nippy.html -------------------------------------------------------------------------------- /doc/api/onyx.doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.doc.html -------------------------------------------------------------------------------- /doc/api/onyx.extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.extensions.html -------------------------------------------------------------------------------- /doc/api/onyx.flow-conditions.fc-compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.flow-conditions.fc-compile.html -------------------------------------------------------------------------------- /doc/api/onyx.flow-conditions.fc-routing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.flow-conditions.fc-routing.html -------------------------------------------------------------------------------- /doc/api/onyx.gc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.gc.html -------------------------------------------------------------------------------- /doc/api/onyx.information-model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.information-model.html -------------------------------------------------------------------------------- /doc/api/onyx.interop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.interop.html -------------------------------------------------------------------------------- /doc/api/onyx.job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.job.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.abort-join-cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.abort-join-cluster.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.accept-join-cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.accept-join-cluster.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.add-virtual-peer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.add-virtual-peer.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.common.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.complete-job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.complete-job.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.gc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.gc.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.group-leave-cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.group-leave-cluster.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.kill-job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.kill-job.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.leave-cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.leave-cluster.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.notify-join-cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.notify-join-cluster.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.prepare-join-cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.prepare-join-cluster.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.set-replica.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.set-replica.html -------------------------------------------------------------------------------- /doc/api/onyx.log.commands.submit-job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.commands.submit-job.html -------------------------------------------------------------------------------- /doc/api/onyx.log.curator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.curator.html -------------------------------------------------------------------------------- /doc/api/onyx.log.entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.entry.html -------------------------------------------------------------------------------- /doc/api/onyx.log.failure-detector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.failure-detector.html -------------------------------------------------------------------------------- /doc/api/onyx.log.replica-invariants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.replica-invariants.html -------------------------------------------------------------------------------- /doc/api/onyx.log.replica.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.replica.html -------------------------------------------------------------------------------- /doc/api/onyx.log.zookeeper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.log.zookeeper.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron-media-driver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron-media-driver.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron.embedded-media-driver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron.embedded-media-driver.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron.endpoint-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron.endpoint-status.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron.messaging-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron.messaging-group.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron.publisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron.publisher.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron.status-publisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron.status-publisher.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron.subscriber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron.subscriber.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.aeron.utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.aeron.utils.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.messenger-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.messenger-state.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.protocols.endpoint-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.protocols.endpoint-status.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.protocols.messenger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.protocols.messenger.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.protocols.publisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.protocols.publisher.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.protocols.status-publisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.protocols.status-publisher.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.protocols.subscriber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.protocols.subscriber.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.serialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.serialize.html -------------------------------------------------------------------------------- /doc/api/onyx.messaging.short-circuit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.messaging.short-circuit.html -------------------------------------------------------------------------------- /doc/api/onyx.monitoring.custom-monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.monitoring.custom-monitoring.html -------------------------------------------------------------------------------- /doc/api/onyx.monitoring.measurements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.monitoring.measurements.html -------------------------------------------------------------------------------- /doc/api/onyx.monitoring.metrics-monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.monitoring.metrics-monitoring.html -------------------------------------------------------------------------------- /doc/api/onyx.monitoring.no-op-monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.monitoring.no-op-monitoring.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.communicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.communicator.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.constants.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.coordinator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.coordinator.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.function.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.liveness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.liveness.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.log-version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.log-version.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.operation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.operation.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.peer-group-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.peer-group-manager.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.queryable-state-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.queryable-state-manager.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.resume-point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.resume-point.html -------------------------------------------------------------------------------- /doc/api/onyx.peer.status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.peer.status.html -------------------------------------------------------------------------------- /doc/api/onyx.plugin.messaging-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.plugin.messaging-output.html -------------------------------------------------------------------------------- /doc/api/onyx.plugin.null.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.plugin.null.html -------------------------------------------------------------------------------- /doc/api/onyx.plugin.protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.plugin.protocols.html -------------------------------------------------------------------------------- /doc/api/onyx.plugin.seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.plugin.seq.html -------------------------------------------------------------------------------- /doc/api/onyx.protocol.task-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.protocol.task-state.html -------------------------------------------------------------------------------- /doc/api/onyx.query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.query.html -------------------------------------------------------------------------------- /doc/api/onyx.refinements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.refinements.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.balanced-job-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.balanced-job-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.balanced-task-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.balanced-task-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.colocated-task-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.colocated-task-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.common-job-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.common-job-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.common-task-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.common-task-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.greedy-job-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.greedy-job-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.percentage-job-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.percentage-job-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.scheduling.percentage-task-scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.scheduling.percentage-task-scheduler.html -------------------------------------------------------------------------------- /doc/api/onyx.schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.schema.html -------------------------------------------------------------------------------- /doc/api/onyx.seq.information-model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.seq.information-model.html -------------------------------------------------------------------------------- /doc/api/onyx.state.lmdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.lmdb.html -------------------------------------------------------------------------------- /doc/api/onyx.state.open-checkpoint-db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.open-checkpoint-db.html -------------------------------------------------------------------------------- /doc/api/onyx.state.protocol.db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.protocol.db.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.checkpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.checkpoint.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.group-decoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.group-decoder.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.group-encoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.group-encoder.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.group-reverse-decoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.group-reverse-decoder.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.group-reverse-encoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.group-reverse-encoder.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.state-entry-key-decoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.state-entry-key-decoder.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.state-entry-key-encoder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.state-entry-key-encoder.html -------------------------------------------------------------------------------- /doc/api/onyx.state.serializers.utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.state.serializers.utils.html -------------------------------------------------------------------------------- /doc/api/onyx.static.default-vals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.static.default-vals.html -------------------------------------------------------------------------------- /doc/api/onyx.static.path-seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.static.path-seq.html -------------------------------------------------------------------------------- /doc/api/onyx.static.planning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.static.planning.html -------------------------------------------------------------------------------- /doc/api/onyx.static.swap-pair.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.static.swap-pair.html -------------------------------------------------------------------------------- /doc/api/onyx.static.util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.static.util.html -------------------------------------------------------------------------------- /doc/api/onyx.static.uuid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.static.uuid.html -------------------------------------------------------------------------------- /doc/api/onyx.storage.s3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.storage.s3.html -------------------------------------------------------------------------------- /doc/api/onyx.system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.system.html -------------------------------------------------------------------------------- /doc/api/onyx.tasks.core-async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.tasks.core-async.html -------------------------------------------------------------------------------- /doc/api/onyx.tasks.function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.tasks.function.html -------------------------------------------------------------------------------- /doc/api/onyx.tasks.null.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.tasks.null.html -------------------------------------------------------------------------------- /doc/api/onyx.tasks.seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.tasks.seq.html -------------------------------------------------------------------------------- /doc/api/onyx.test-helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.test-helper.html -------------------------------------------------------------------------------- /doc/api/onyx.triggers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.triggers.html -------------------------------------------------------------------------------- /doc/api/onyx.types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.types.html -------------------------------------------------------------------------------- /doc/api/onyx.windowing.aggregation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.windowing.aggregation.html -------------------------------------------------------------------------------- /doc/api/onyx.windowing.units.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.windowing.units.html -------------------------------------------------------------------------------- /doc/api/onyx.windowing.window-extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/api/onyx.windowing.window-extensions.html -------------------------------------------------------------------------------- /doc/design/allocate-examples/example-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/design/allocate-examples/example-1.md -------------------------------------------------------------------------------- /doc/design/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/design/components.html -------------------------------------------------------------------------------- /doc/design/proposals/batch_primitives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/design/proposals/batch_primitives.md -------------------------------------------------------------------------------- /doc/design/proposals/coordination_scalability.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/design/proposals/coordination_scalability.adoc -------------------------------------------------------------------------------- /doc/design/proposals/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/design/proposals/serialization.md -------------------------------------------------------------------------------- /doc/design/proposals/task_lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/design/proposals/task_lifecycle.md -------------------------------------------------------------------------------- /doc/design/proposals/windowing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/design/proposals/windowing.md -------------------------------------------------------------------------------- /doc/developers-guide/branch-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/developers-guide/branch-policy.md -------------------------------------------------------------------------------- /doc/developers-guide/deployment-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/developers-guide/deployment-process.md -------------------------------------------------------------------------------- /doc/developers-guide/plugin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/developers-guide/plugin/release.sh -------------------------------------------------------------------------------- /doc/developers-guide/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/developers-guide/release-checklist.md -------------------------------------------------------------------------------- /doc/images/breeze-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/breeze-125.png -------------------------------------------------------------------------------- /doc/images/cognician.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/cognician.png -------------------------------------------------------------------------------- /doc/images/indaba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/indaba.png -------------------------------------------------------------------------------- /doc/images/lockedon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/lockedon.png -------------------------------------------------------------------------------- /doc/images/logo/high-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/logo/high-res.png -------------------------------------------------------------------------------- /doc/images/logo/multi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/logo/multi.jpg -------------------------------------------------------------------------------- /doc/images/logo/yourkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/logo/yourkit.png -------------------------------------------------------------------------------- /doc/images/modnakasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/modnakasta.png -------------------------------------------------------------------------------- /doc/images/yapster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/images/yapster.png -------------------------------------------------------------------------------- /doc/release-notes/0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/release-notes/0.4.0.md -------------------------------------------------------------------------------- /doc/release-notes/0.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/release-notes/0.5.0.md -------------------------------------------------------------------------------- /doc/release-notes/0.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/release-notes/0.6.0.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/release-notes/0.7.0.md -------------------------------------------------------------------------------- /doc/release-notes/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/release-notes/0.8.0.md -------------------------------------------------------------------------------- /doc/user-guide/abs/barrier-example-1/example.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/abs/barrier-example-1/example.graffle -------------------------------------------------------------------------------- /doc/user-guide/abs/barrier-example-1/step$.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/abs/barrier-example-1/step$.png -------------------------------------------------------------------------------- /doc/user-guide/abs/barrier-example-1/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/abs/barrier-example-1/step1.png -------------------------------------------------------------------------------- /doc/user-guide/abs/barrier-example-1/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/abs/barrier-example-1/step2.png -------------------------------------------------------------------------------- /doc/user-guide/abs/barrier-example-1/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/abs/barrier-example-1/step3.png -------------------------------------------------------------------------------- /doc/user-guide/abs/barrier-example-1/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/abs/barrier-example-1/step4.png -------------------------------------------------------------------------------- /doc/user-guide/aggregation-state-management.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/aggregation-state-management.adoc -------------------------------------------------------------------------------- /doc/user-guide/apis.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/apis.adoc -------------------------------------------------------------------------------- /doc/user-guide/architecture-low-level-design.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/architecture-low-level-design.adoc -------------------------------------------------------------------------------- /doc/user-guide/backpressure.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/backpressure.adoc -------------------------------------------------------------------------------- /doc/user-guide/concepts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/concepts.adoc -------------------------------------------------------------------------------- /doc/user-guide/core-async-plugin.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/core-async-plugin.adoc -------------------------------------------------------------------------------- /doc/user-guide/deployment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/deployment.adoc -------------------------------------------------------------------------------- /doc/user-guide/environment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/environment.adoc -------------------------------------------------------------------------------- /doc/user-guide/examples.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/examples.adoc -------------------------------------------------------------------------------- /doc/user-guide/faq.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/faq.adoc -------------------------------------------------------------------------------- /doc/user-guide/flow-conditions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/flow-conditions.adoc -------------------------------------------------------------------------------- /doc/user-guide/functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/functions.adoc -------------------------------------------------------------------------------- /doc/user-guide/img/1-peer-1-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/1-peer-1-task.png -------------------------------------------------------------------------------- /doc/user-guide/img/1-peer-dies-acking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/1-peer-dies-acking.png -------------------------------------------------------------------------------- /doc/user-guide/img/1-peer-dies-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/1-peer-dies-active.png -------------------------------------------------------------------------------- /doc/user-guide/img/1-peer-dies-completing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/1-peer-dies-completing.png -------------------------------------------------------------------------------- /doc/user-guide/img/1-peer-dies-sealing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/1-peer-dies-sealing.png -------------------------------------------------------------------------------- /doc/user-guide/img/1-peer-times-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/1-peer-times-out.png -------------------------------------------------------------------------------- /doc/user-guide/img/2-peers-1-dies-sealing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/2-peers-1-dies-sealing.png -------------------------------------------------------------------------------- /doc/user-guide/img/2-peers-1-joins-late.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/2-peers-1-joins-late.png -------------------------------------------------------------------------------- /doc/user-guide/img/2-peers-1-joins-while-sealing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/2-peers-1-joins-while-sealing.png -------------------------------------------------------------------------------- /doc/user-guide/img/2-peers-1-waits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/2-peers-1-waits.png -------------------------------------------------------------------------------- /doc/user-guide/img/client-side-load-balancing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/client-side-load-balancing.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-1.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-10.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-11.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-12.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-13.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-14.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-15.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-16.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-17.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-2.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-3.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-4.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-5.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-6.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-7.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-8.png -------------------------------------------------------------------------------- /doc/user-guide/img/diagram-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/diagram-9.png -------------------------------------------------------------------------------- /doc/user-guide/img/election.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/election.png -------------------------------------------------------------------------------- /doc/user-guide/img/messaging-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/messaging-summary.png -------------------------------------------------------------------------------- /doc/user-guide/img/peer-failure-reorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/img/peer-failure-reorder.png -------------------------------------------------------------------------------- /doc/user-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/index.adoc -------------------------------------------------------------------------------- /doc/user-guide/information-model.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/information-model.adoc -------------------------------------------------------------------------------- /doc/user-guide/join-examples/example-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/join-examples/example-1.md -------------------------------------------------------------------------------- /doc/user-guide/join-examples/example-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/join-examples/example-2.md -------------------------------------------------------------------------------- /doc/user-guide/join-examples/example-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/join-examples/example-3.md -------------------------------------------------------------------------------- /doc/user-guide/join-examples/example-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/join-examples/example-4.md -------------------------------------------------------------------------------- /doc/user-guide/join-examples/example-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/join-examples/example-5.md -------------------------------------------------------------------------------- /doc/user-guide/join-examples/example-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/join-examples/example-6.md -------------------------------------------------------------------------------- /doc/user-guide/join-examples/example-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/join-examples/example-7.md -------------------------------------------------------------------------------- /doc/user-guide/leave-examples/example-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/leave-examples/example-1.md -------------------------------------------------------------------------------- /doc/user-guide/leave-examples/example-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/leave-examples/example-2.md -------------------------------------------------------------------------------- /doc/user-guide/lifecycles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/lifecycles.adoc -------------------------------------------------------------------------------- /doc/user-guide/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/logging.adoc -------------------------------------------------------------------------------- /doc/user-guide/messaging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/messaging.adoc -------------------------------------------------------------------------------- /doc/user-guide/monitoring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/monitoring.adoc -------------------------------------------------------------------------------- /doc/user-guide/performance-tuning.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/performance-tuning.adoc -------------------------------------------------------------------------------- /doc/user-guide/plugins.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/plugins.adoc -------------------------------------------------------------------------------- /doc/user-guide/production-check-list.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/production-check-list.adoc -------------------------------------------------------------------------------- /doc/user-guide/resume-points.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/resume-points.adoc -------------------------------------------------------------------------------- /doc/user-guide/scheduling.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/scheduling.adoc -------------------------------------------------------------------------------- /doc/user-guide/seq-plugin.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/seq-plugin.adoc -------------------------------------------------------------------------------- /doc/user-guide/subscription.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/subscription.adoc -------------------------------------------------------------------------------- /doc/user-guide/testing-onyx-jobs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/testing-onyx-jobs.adoc -------------------------------------------------------------------------------- /doc/user-guide/triggers.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/triggers.adoc -------------------------------------------------------------------------------- /doc/user-guide/watermarks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/watermarks.adoc -------------------------------------------------------------------------------- /doc/user-guide/what-does-it-offer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/what-does-it-offer.adoc -------------------------------------------------------------------------------- /doc/user-guide/windowing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/doc/user-guide/windowing.adoc -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/project.clj -------------------------------------------------------------------------------- /resources/onyx-schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/resources/onyx-schema.xml -------------------------------------------------------------------------------- /scripts/circle-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/scripts/circle-runner.sh -------------------------------------------------------------------------------- /scripts/generate_sbe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/scripts/generate_sbe.sh -------------------------------------------------------------------------------- /scripts/reflection-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/scripts/reflection-check.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/run_gen_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/scripts/run_gen_tests.sh -------------------------------------------------------------------------------- /src/onyx/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/api.clj -------------------------------------------------------------------------------- /src/onyx/checkpoint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/checkpoint.clj -------------------------------------------------------------------------------- /src/onyx/compression/nippy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/compression/nippy.clj -------------------------------------------------------------------------------- /src/onyx/doc.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/doc.cljc -------------------------------------------------------------------------------- /src/onyx/extensions.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/extensions.cljc -------------------------------------------------------------------------------- /src/onyx/flow_conditions/fc_compile.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/flow_conditions/fc_compile.cljc -------------------------------------------------------------------------------- /src/onyx/flow_conditions/fc_routing.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/flow_conditions/fc_routing.cljc -------------------------------------------------------------------------------- /src/onyx/gc.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/gc.clj -------------------------------------------------------------------------------- /src/onyx/information_model.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/information_model.cljc -------------------------------------------------------------------------------- /src/onyx/interop.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/interop.clj -------------------------------------------------------------------------------- /src/onyx/job.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/job.cljc -------------------------------------------------------------------------------- /src/onyx/lifecycles/lifecycle_compile.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/lifecycles/lifecycle_compile.cljc -------------------------------------------------------------------------------- /src/onyx/log/commands/abort_join_cluster.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/abort_join_cluster.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/accept_join_cluster.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/accept_join_cluster.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/add_virtual_peer.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/add_virtual_peer.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/common.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/common.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/complete_job.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/complete_job.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/gc.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/gc.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/group_leave_cluster.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/group_leave_cluster.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/kill_job.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/kill_job.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/leave_cluster.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/leave_cluster.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/notify_join_cluster.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/notify_join_cluster.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/prepare_join_cluster.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/prepare_join_cluster.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/set_replica.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/set_replica.clj -------------------------------------------------------------------------------- /src/onyx/log/commands/submit_job.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/commands/submit_job.clj -------------------------------------------------------------------------------- /src/onyx/log/curator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/curator.clj -------------------------------------------------------------------------------- /src/onyx/log/entry.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/entry.clj -------------------------------------------------------------------------------- /src/onyx/log/failure_detector.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/failure_detector.clj -------------------------------------------------------------------------------- /src/onyx/log/replica.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/replica.clj -------------------------------------------------------------------------------- /src/onyx/log/replica_invariants.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/replica_invariants.clj -------------------------------------------------------------------------------- /src/onyx/log/zookeeper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/log/zookeeper.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/embedded_media_driver.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/embedded_media_driver.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/endpoint_status.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/endpoint_status.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/int2objectmap.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/int2objectmap.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/messaging_group.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/messaging_group.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/messenger.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/messenger.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/publisher.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/publisher.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/status_publisher.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/status_publisher.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/subscriber.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/subscriber.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron/utils.clj -------------------------------------------------------------------------------- /src/onyx/messaging/aeron_media_driver.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/aeron_media_driver.clj -------------------------------------------------------------------------------- /src/onyx/messaging/common.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/common.clj -------------------------------------------------------------------------------- /src/onyx/messaging/messenger_state.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/messenger_state.clj -------------------------------------------------------------------------------- /src/onyx/messaging/protocols/endpoint_status.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/protocols/endpoint_status.clj -------------------------------------------------------------------------------- /src/onyx/messaging/protocols/messenger.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/protocols/messenger.cljc -------------------------------------------------------------------------------- /src/onyx/messaging/protocols/publisher.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/protocols/publisher.clj -------------------------------------------------------------------------------- /src/onyx/messaging/protocols/status_publisher.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/protocols/status_publisher.clj -------------------------------------------------------------------------------- /src/onyx/messaging/protocols/subscriber.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/protocols/subscriber.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serialize.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serialize.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/barrier_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/barrier_decoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/barrier_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/barrier_encoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/base_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/base_decoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/base_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/base_encoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/heartbeat_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/heartbeat_decoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/heartbeat_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/heartbeat_encoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/helpers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/helpers.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/local_segment_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/local_segment_decoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/local_segment_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/local_segment_encoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/ready_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/ready_decoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/ready_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/ready_encoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/ready_reply_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/ready_reply_decoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/ready_reply_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/ready_reply_encoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/segment_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/segment_decoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/serializers/segment_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/serializers/segment_encoder.clj -------------------------------------------------------------------------------- /src/onyx/messaging/short_circuit.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/messaging/short_circuit.clj -------------------------------------------------------------------------------- /src/onyx/monitoring/custom_monitoring.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/monitoring/custom_monitoring.clj -------------------------------------------------------------------------------- /src/onyx/monitoring/measurements.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/monitoring/measurements.clj -------------------------------------------------------------------------------- /src/onyx/monitoring/metrics_monitoring.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/monitoring/metrics_monitoring.clj -------------------------------------------------------------------------------- /src/onyx/monitoring/no_op_monitoring.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/monitoring/no_op_monitoring.clj -------------------------------------------------------------------------------- /src/onyx/peer/communicator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/communicator.clj -------------------------------------------------------------------------------- /src/onyx/peer/constants.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/constants.clj -------------------------------------------------------------------------------- /src/onyx/peer/coordinator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/coordinator.clj -------------------------------------------------------------------------------- /src/onyx/peer/function.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/function.clj -------------------------------------------------------------------------------- /src/onyx/peer/grouping.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/grouping.cljc -------------------------------------------------------------------------------- /src/onyx/peer/liveness.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/liveness.clj -------------------------------------------------------------------------------- /src/onyx/peer/log_version.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/log_version.cljc -------------------------------------------------------------------------------- /src/onyx/peer/operation.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/operation.cljc -------------------------------------------------------------------------------- /src/onyx/peer/peer_group_manager.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/peer_group_manager.clj -------------------------------------------------------------------------------- /src/onyx/peer/queryable_state_manager.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/queryable_state_manager.clj -------------------------------------------------------------------------------- /src/onyx/peer/read_batch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/read_batch.clj -------------------------------------------------------------------------------- /src/onyx/peer/resume_point.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/resume_point.clj -------------------------------------------------------------------------------- /src/onyx/peer/status.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/status.clj -------------------------------------------------------------------------------- /src/onyx/peer/task_compile.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/task_compile.clj -------------------------------------------------------------------------------- /src/onyx/peer/task_lifecycle.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/task_lifecycle.clj -------------------------------------------------------------------------------- /src/onyx/peer/transform.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/transform.clj -------------------------------------------------------------------------------- /src/onyx/peer/virtual_peer.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/virtual_peer.clj -------------------------------------------------------------------------------- /src/onyx/peer/window_state.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/peer/window_state.cljc -------------------------------------------------------------------------------- /src/onyx/plugin/core_async.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/plugin/core_async.cljc -------------------------------------------------------------------------------- /src/onyx/plugin/messaging_output.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/plugin/messaging_output.clj -------------------------------------------------------------------------------- /src/onyx/plugin/null.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/plugin/null.cljc -------------------------------------------------------------------------------- /src/onyx/plugin/protocols.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/plugin/protocols.cljc -------------------------------------------------------------------------------- /src/onyx/plugin/seq.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/plugin/seq.cljc -------------------------------------------------------------------------------- /src/onyx/protocol/task_state.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/protocol/task_state.cljc -------------------------------------------------------------------------------- /src/onyx/query.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/query.clj -------------------------------------------------------------------------------- /src/onyx/refinements.cljc: -------------------------------------------------------------------------------- 1 | (ns onyx.refinements) 2 | -------------------------------------------------------------------------------- /src/onyx/scheduling/balanced_job_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/balanced_job_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/scheduling/balanced_task_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/balanced_task_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/scheduling/colocated_task_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/colocated_task_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/scheduling/common_job_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/common_job_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/scheduling/common_task_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/common_task_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/scheduling/greedy_job_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/greedy_job_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/scheduling/percentage_job_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/percentage_job_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/scheduling/percentage_task_scheduler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/scheduling/percentage_task_scheduler.clj -------------------------------------------------------------------------------- /src/onyx/schema.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/schema.cljc -------------------------------------------------------------------------------- /src/onyx/seq/information_model.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/seq/information_model.cljc -------------------------------------------------------------------------------- /src/onyx/state/lmdb.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/lmdb.clj -------------------------------------------------------------------------------- /src/onyx/state/memory.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/memory.cljc -------------------------------------------------------------------------------- /src/onyx/state/open_checkpoint_db.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/open_checkpoint_db.clj -------------------------------------------------------------------------------- /src/onyx/state/protocol/db.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/protocol/db.cljc -------------------------------------------------------------------------------- /src/onyx/state/serializers/checkpoint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/checkpoint.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/group_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/group_decoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/group_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/group_encoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/group_reverse_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/group_reverse_decoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/group_reverse_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/group_reverse_encoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/heartbeat_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/heartbeat_encoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/state_entry_key_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/state_entry_key_decoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/state_entry_key_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/state_entry_key_encoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/utils.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/windowing_key_decoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/windowing_key_decoder.clj -------------------------------------------------------------------------------- /src/onyx/state/serializers/windowing_key_encoder.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/state/serializers/windowing_key_encoder.clj -------------------------------------------------------------------------------- /src/onyx/static/analyzer.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/analyzer.cljc -------------------------------------------------------------------------------- /src/onyx/static/default_vals.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/default_vals.cljc -------------------------------------------------------------------------------- /src/onyx/static/helpful_job_errors.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/helpful_job_errors.cljc -------------------------------------------------------------------------------- /src/onyx/static/logging.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/logging.clj -------------------------------------------------------------------------------- /src/onyx/static/logging_configuration.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/logging_configuration.clj -------------------------------------------------------------------------------- /src/onyx/static/path_seq.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/path_seq.cljc -------------------------------------------------------------------------------- /src/onyx/static/planning.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/planning.cljc -------------------------------------------------------------------------------- /src/onyx/static/pretty_print.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/pretty_print.cljc -------------------------------------------------------------------------------- /src/onyx/static/swap_pair.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/swap_pair.clj -------------------------------------------------------------------------------- /src/onyx/static/util.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/util.cljc -------------------------------------------------------------------------------- /src/onyx/static/uuid.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/uuid.clj -------------------------------------------------------------------------------- /src/onyx/static/validation.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/static/validation.cljc -------------------------------------------------------------------------------- /src/onyx/storage/s3.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/storage/s3.clj -------------------------------------------------------------------------------- /src/onyx/system.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/system.clj -------------------------------------------------------------------------------- /src/onyx/tasks/core_async.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/tasks/core_async.clj -------------------------------------------------------------------------------- /src/onyx/tasks/function.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/tasks/function.clj -------------------------------------------------------------------------------- /src/onyx/tasks/null.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/tasks/null.clj -------------------------------------------------------------------------------- /src/onyx/tasks/seq.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/tasks/seq.clj -------------------------------------------------------------------------------- /src/onyx/test_helper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/test_helper.clj -------------------------------------------------------------------------------- /src/onyx/triggers.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/triggers.cljc -------------------------------------------------------------------------------- /src/onyx/types.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/types.cljc -------------------------------------------------------------------------------- /src/onyx/windowing/aggregation.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/windowing/aggregation.cljc -------------------------------------------------------------------------------- /src/onyx/windowing/units.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/windowing/units.cljc -------------------------------------------------------------------------------- /src/onyx/windowing/window_compile.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/windowing/window_compile.cljc -------------------------------------------------------------------------------- /src/onyx/windowing/window_extensions.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/windowing/window_extensions.cljc -------------------------------------------------------------------------------- /src/onyx/windowing/window_id.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/src/onyx/windowing/window_id.cljc -------------------------------------------------------------------------------- /test-resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test-resources/log4j.properties -------------------------------------------------------------------------------- /test-resources/test-config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test-resources/test-config.edn -------------------------------------------------------------------------------- /test/onyx/analyzer_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/analyzer_test.clj -------------------------------------------------------------------------------- /test/onyx/doc_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/doc_test.clj -------------------------------------------------------------------------------- /test/onyx/flow_conditions/flow_conditions_gen_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/flow_conditions/flow_conditions_gen_test.clj -------------------------------------------------------------------------------- /test/onyx/flow_conditions/flow_pred_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/flow_conditions/flow_pred_test.clj -------------------------------------------------------------------------------- /test/onyx/gc/gc_multiple_replicas_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/gc/gc_multiple_replicas_test.clj -------------------------------------------------------------------------------- /test/onyx/generative/lifecycles_gen_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/generative/lifecycles_gen_test.clj -------------------------------------------------------------------------------- /test/onyx/generative/manual_shrink.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/generative/manual_shrink.clj -------------------------------------------------------------------------------- /test/onyx/generative/peer_model.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/generative/peer_model.clj -------------------------------------------------------------------------------- /test/onyx/log/abort_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/abort_test.clj -------------------------------------------------------------------------------- /test/onyx/log/accept_join_cluster_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/accept_join_cluster_test.clj -------------------------------------------------------------------------------- /test/onyx/log/curator_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/curator_test.clj -------------------------------------------------------------------------------- /test/onyx/log/flux_policy_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/flux_policy_test.clj -------------------------------------------------------------------------------- /test/onyx/log/full_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/full_test.clj -------------------------------------------------------------------------------- /test/onyx/log/gc_log_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/gc_log_test.clj -------------------------------------------------------------------------------- /test/onyx/log/gc_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/gc_test.clj -------------------------------------------------------------------------------- /test/onyx/log/generative_group_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/generative_group_test.clj -------------------------------------------------------------------------------- /test/onyx/log/generative_peer_join.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/generative_peer_join.clj -------------------------------------------------------------------------------- /test/onyx/log/generators.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/generators.clj -------------------------------------------------------------------------------- /test/onyx/log/group_leave_cluster_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/group_leave_cluster_test.clj -------------------------------------------------------------------------------- /test/onyx/log/killed_job_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/killed_job_test.clj -------------------------------------------------------------------------------- /test/onyx/log/log_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/log_test.clj -------------------------------------------------------------------------------- /test/onyx/log/notify_join_cluster_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/notify_join_cluster_test.clj -------------------------------------------------------------------------------- /test/onyx/log/notify_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/notify_test.clj -------------------------------------------------------------------------------- /test/onyx/log/prepare_join_cluster_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/prepare_join_cluster_test.clj -------------------------------------------------------------------------------- /test/onyx/log/pulse_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/pulse_test.clj -------------------------------------------------------------------------------- /test/onyx/log/submit_job_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/log/submit_job_test.clj -------------------------------------------------------------------------------- /test/onyx/messaging/aeron_heartbeat_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/messaging/aeron_heartbeat_test.clj -------------------------------------------------------------------------------- /test/onyx/messaging/protocol_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/messaging/protocol_test.clj -------------------------------------------------------------------------------- /test/onyx/mocked/failure_detector.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/mocked/failure_detector.clj -------------------------------------------------------------------------------- /test/onyx/mocked/zookeeper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/mocked/zookeeper.clj -------------------------------------------------------------------------------- /test/onyx/peer/abs_merge_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/abs_merge_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/abs_plugin_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/abs_plugin_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/apply_fn_exception_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/apply_fn_exception_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/automatic_kill_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/automatic_kill_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/batch_function_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/batch_function_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/catalog_params_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/catalog_params_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/colors_flow_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/colors_flow_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/custom_compression_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/custom_compression_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/dag_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/dag_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/flow_exception_retry_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/flow_exception_retry_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/flow_exception_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/flow_exception_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/flow_lifecycle_exception_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/flow_lifecycle_exception_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/flow_pred_exception_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/flow_pred_exception_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/flow_retry_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/flow_retry_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/fn_grouping_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/fn_grouping_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/idempotent_job_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/idempotent_job_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/join_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/join_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/killed_job_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/killed_job_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/kw_grouping_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/kw_grouping_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/leaf_function_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/leaf_function_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/lifecycle_exception_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/lifecycle_exception_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/lifecycles_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/lifecycles_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/max_peers_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/max_peers_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/min_peers_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/min_peers_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/monitoring_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/monitoring_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/multi_input_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/multi_input_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/params_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/params_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/people_flow_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/people_flow_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/resume_points_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/resume_points_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/serialized_exception_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/serialized_exception_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/short_circuit_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/short_circuit_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/stuck_peer_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/stuck_peer_test.clj -------------------------------------------------------------------------------- /test/onyx/peer/tail_params_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/peer/tail_params_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/balanced_grouping_generative_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/balanced_grouping_generative_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/colocation_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/colocation_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/percentage_grouping_generative_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/percentage_grouping_generative_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/percentage_multi_job_generative_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/percentage_multi_job_generative_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/percentage_multi_job_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/percentage_multi_job_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/scheduler_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/scheduler_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/tagged_constraints_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/tagged_constraints_test.clj -------------------------------------------------------------------------------- /test/onyx/scheduler/two_job_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/scheduler/two_job_test.clj -------------------------------------------------------------------------------- /test/onyx/state/checkpoint_serializer_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/state/checkpoint_serializer_test.clj -------------------------------------------------------------------------------- /test/onyx/state/state_store_gen_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/state/state_store_gen_test.clj -------------------------------------------------------------------------------- /test/onyx/state/state_store_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/state/state_store_test.clj -------------------------------------------------------------------------------- /test/onyx/stress/checkpoint_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/stress/checkpoint_test.clj -------------------------------------------------------------------------------- /test/onyx/test_boilerplate.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/test_boilerplate.clj -------------------------------------------------------------------------------- /test/onyx/triggers/trigger_percentile_watermark_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/triggers/trigger_percentile_watermark_test.clj -------------------------------------------------------------------------------- /test/onyx/triggers/trigger_punctuation_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/triggers/trigger_punctuation_test.clj -------------------------------------------------------------------------------- /test/onyx/triggers/trigger_segment_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/triggers/trigger_segment_test.clj -------------------------------------------------------------------------------- /test/onyx/triggers/trigger_timer_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/triggers/trigger_timer_test.clj -------------------------------------------------------------------------------- /test/onyx/validation_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/validation_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/aggregation_average_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/aggregation_average_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/aggregation_conj_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/aggregation_conj_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/aggregation_count_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/aggregation_count_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/aggregation_grouping_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/aggregation_grouping_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/aggregation_max_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/aggregation_max_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/aggregation_min_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/aggregation_min_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/aggregation_ordered_log_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/aggregation_ordered_log_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/basic_windowing_crash_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/basic_windowing_crash_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/collect_by_key_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/collect_by_key_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/emit_aggregate_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/emit_aggregate_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/reduce_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/reduce_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/wid_generative_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/wid_generative_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_exceptions_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_exceptions_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_extensions_generative_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_extensions_generative_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_fixed_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_fixed_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_global_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_global_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_max_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_max_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_session_merge_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_session_merge_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_session_minimum_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_session_minimum_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_session_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_session_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_sliding_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_sliding_test.clj -------------------------------------------------------------------------------- /test/onyx/windowing/window_watermark_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onyx-platform/onyx/HEAD/test/onyx/windowing/window_watermark_test.clj --------------------------------------------------------------------------------