All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ase.hbase-protocol-shaded.2.6.1.source-code.Procedure.proto Maven / Gradle / Ivy

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
syntax = "proto2";
package hbase.pb;

option java_package = "org.apache.hadoop.hbase.shaded.protobuf.generated";
option java_outer_classname = "ProcedureProtos";
option java_generic_services = true;
option java_generate_equals_and_hash = true;
option optimize_for = SPEED;

import "org/apache/hbase/thirdparty/google/protobuf/any.proto";
import "ErrorHandling.proto";

enum ProcedureState {
  INITIALIZING = 1;         // Procedure in construction, not yet added to the executor
  RUNNABLE = 2;             // Procedure added to the executor, and ready to be executed
  WAITING = 3;              // The procedure is waiting on children to be completed
  WAITING_TIMEOUT = 4;      // The procedure is waiting a timout or an external event
  ROLLEDBACK = 5;           // The procedure failed and was rolledback
  SUCCESS = 6;              // The procedure execution is completed successfully.
  FAILED = 7;               // The procedure execution is failed, may need to rollback
}

/**
 * Procedure metadata, serialized by the ProcedureStore to be able to recover the old state.
 */
message Procedure {
  // internal "static" state
  required string class_name = 1;        // full classname to be able to instantiate the procedure
  optional uint64 parent_id = 2;         // parent if not a root-procedure otherwise not set
  required uint64 proc_id = 3;
  required uint64 submitted_time = 4;
  optional string owner = 5;

  // internal "runtime" state
  required ProcedureState state = 6;
  repeated uint32 stack_id = 7;          // stack indices in case the procedure was running
  required uint64 last_update = 8;
  optional uint32 timeout = 9;

  // user state/results
  optional ForeignExceptionMessage exception = 10;
  optional bytes result = 11;           // opaque (user) result structure
  optional bytes state_data = 12;       // opaque (user) procedure internal-state - OBSOLATE
  repeated google.protobuf.Any state_message = 15; // opaque (user) procedure internal-state

  // Nonce to prevent same procedure submit by multiple times
  optional uint64 nonce_group = 13 [default = 0];
  optional uint64 nonce = 14 [default = 0];

  // whether the procedure has held the lock
  optional bool locked = 16 [default = false];

  // whether the procedure need to be bypassed
  optional bool bypass = 17 [default = false];

  // whether the procedure has been executed
  // since we do not always maintain the stack_id now, we need a separated flag
  optional bool executed = 18 [default = false];
}

/**
 * SequentialProcedure data
 */
message SequentialProcedureData {
  required bool executed = 1;
}

/**
 * StateMachineProcedure data
 */
message StateMachineProcedureData {
  repeated uint32 state = 1;
}

/**
 * Procedure WAL header
 */
message ProcedureWALHeader {
  required uint32 version = 1;
  required uint32 type = 2;
  required uint64 log_id = 3;
  required uint64 min_proc_id = 4;
}

/**
 * Procedure WAL trailer
 */
message ProcedureWALTrailer {
  required uint32 version = 1;
  required uint64 tracker_pos = 2;
}

message ProcedureStoreTracker {
  message TrackerNode {
    required uint64 start_id = 1;
    repeated uint64 updated = 2;
    repeated uint64 deleted = 3;
  }

  repeated TrackerNode node = 1;
}

message ProcedureWALEntry {
  enum Type {
    PROCEDURE_WAL_EOF     = 1;
    PROCEDURE_WAL_INIT    = 2;
    PROCEDURE_WAL_INSERT  = 3;
    PROCEDURE_WAL_UPDATE  = 4;
    PROCEDURE_WAL_DELETE  = 5;
    PROCEDURE_WAL_COMPACT = 6;
  }

  required Type type = 1;
  repeated Procedure procedure = 2;
  optional uint64 proc_id = 3;
  repeated uint64 child_id = 4;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy