Build to Destination Log Walkthrough
The following section contains the logs entries that reflect the build process progression in detail. It reflects a successful simple build process, outlining the various phases of the build process and their successful completion. In addition, each entry illustrates the potential exceptions/error messages that could arise from executing the given step.
Build Service
Example of an ElastiCube build (stored in MonetDB):
Class |
Message # |
Description |
Successful Log entry |
Example |
Possible Error Messages |
Potential Root Cause + Solution |
---|---|---|---|---|---|---|
PHASE: INITIALIZATION LOG: build.log |
||||||
BuildService |
BE#392556 |
The ElastiCube data model (schema) is retrieved from MongoDB and the information is processed.
Started handling a build process, the OID is the ID of the cube being built.
MonetDB Schema ID is yet to be assigned at this point. |
BE#392556 doBuild started OID: <CubeID>, Schema Id: <SchemaID>
MongoDB collection path: CubeID = be >> Collections >> ecmModel >> _id SchemaID = be >> Collections >> ecmModel >> schemaId
OR
BE#301302 Trigger Build called. Data Source Id: <CubeID> |
BE#392556 doBuild started OID: de1ebcd6-5c44-4cbd-b741-9c7997bff2d8, Schema Id: null |
BE#297509 Failed to run build. Data Source Title: <Cube Name>, ECM Model OID: <Cube ID>, error: <cause of failure>, <error message>
|
Potential causes of failure: - Disconnection from MongoDB - An invalid or non-existent model
|
BuildService |
BE#040383 |
Initiates the build process for the cube. This step sends a request to the management pod for the status of the platform and readiness to initiate the build. |
BE#040383 StartBuildingCube DataSourceId <CubeID> |
BE#040383 StartBuildingCube DataSourceId e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
BE#786938 Start BuildingCube failed DataSourceId: <CubeID>
The following error message will contain the reason for the system not being ready to initiate the build:
BE#983868 <status description> ,<BuildStatus>, <CubeID>
BE#130359 service not found, serviceName: Management Service |
The following are management pod reasons that identify why the build request cannot be initiated:
This can occur if there is a problem with ZooKeeper and/or the management service is inaccessible. Solution: Check the platform to determine whether any of the conditions specified are the cause, and rectify the problem. |
BuildService |
BE#766306 |
Starts creation of the build plan for the cube. |
BE#766306 Start Planning Build. OID: <CubeID>, Schema ID: <SchemaID>
|
BE#766306 Start Planning Build. OID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e, Schema Id: null |
BE#375008 Failed to create models for build. Data Source Title: <CubeTitle>, ECM Model OID: <CubeID>
BE#136035 Failed to run build. Data Source Title: <CubeTitle>, ECM Model OID: <CubeID>
Cube Name = CubeID = MongoDB >> be >> Collections >> ecmModel >> title >> _value Combined Error: Failed to set data source model for build |
|
EcmModel |
BE#974336 |
Generates a new SchemaID that will be assigned to the schema of the cube. |
In a case where a new cube is being built: BE#974336 Calculated schema ID <SchemaID>
Or even if an ID exists, for a new ID: BE#000735 Calculated a new schema ID <SchemaID> in the case a change in the model is recognized. Old schema ID <OldSchemaID> ignored
Or no schema ID is being calculated: BE#105635 Ignoring calculating a new schema ID |
BE#974336 Calculated schema ID '0545564c-1341-3920-96eb-e19021de1b02'
|
|
|
BuildService |
BE#869430 |
Creates models for the cube, based on the definitions for the cube.
|
BE#869430 Creating Models. Data Source Title: <CubeTitle>, ECM Model OID: <CubeID> |
BE#869430 Creating Models. Data Source Title: TestMySQL, ECM Model OID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
BE#063661 exception was received while saving the cube models, Failed to create models |
MongoDB is not accessible to save the cube metadata model. |
LogicalServiceImpl |
BE#656221 |
Creates the logical DB schema to be used for the creation of the cube data schema.
|
BE#656221 Creating Logical Schema. Data Source Title: <CubeTitle>, ECM Model OID: <CubeID> |
BE#656221 Creating Logical Schema. Data Source Title: TestMySQL, ECM Model OID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
BE#345777 EcmModel.schemaId is null
Exception: "Build general error" |
This will occur when the Cube ID does not exist. |
LogicalServiceImpl |
BE#681180 doBuild |
Creates the physical schema from the logical schema that will be used for the creation of the schema (e.g., by MonetDB when creating the cube data schema).
|
BE#681180 Creating Physical Schema. Data Source Title: <Cube Name>, ECM Model OID: <Cube ID> |
BE#681180 Creating Physical Schema. Data Source Title: TestMySQL, ECM Model OID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
|
|
DbSchemaLogicalToExternalDb |
BE#094938 |
Verifies that the relationship is valid in terms of column types. That is, a relationship can be set between columns that have the same data type (e.g., "int" cannot have a relationship with "string"). Also, define relationship dimension tables if needed.
|
BE#094938 Scanning for relationships. Data Source Title: <Cube Name> |
BE#094938 Scanning for relationships. Data Source Title: EC Test |
BE#574933 Columns in relationship have different types: <ColumnType> != <Relationship Column Type>
Exception: BE#403079 Columns in relationship have different types: <ColumnType> != <Relationship Column Type> |
Relationships are set between columns that have different data types (e.g., INT and CHAR columns).
The build will fail.
Solution: Remove relationships if they are not needed, or convert the types to be compatible. |
BuildService |
BE#578789 |
Stores the new model into MongoDB.
If the previous build failed on the cube, meaning the build did not finish successfully, there might be a partially built model stored and therefore they will be deleted from MongoDB for the cube.
A notification message is sent to the storage services to save the model's metadata of the cube. Each record will first be deleted and then a new record will be created in MongoDB.
The list of metadata types' transactions performed will include:
Also, the following files will be saved in the farm: ● ElastiCube.json ● ElastiCubePhysicalDbSchema.json ● ElastiCubeInfo.json ● BuildMetaData.json |
BE#578789 Storing Models. Data Source Title: <CubeTitle>, ECM Model OID: <CubeID> |
BE#578789 Storing Models. Data Source Title: TestMySQL, ECM model OID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
An exception will be raised which will be received from the MongoDB API.
Furthermore the following failures of transacting files could occur:
File 1: BE#449244 Failed to write ElastiCube.json BE#785588 Failed to store ECM model file
File 2: BE#456740 Failed to write ElastiCubePhysicalDbSchema.json BE#156327 Failed to store Physical DB Schema file
File 3: BE#108980 Failed to write ElastiCubeInfo.json BE#143359 Failed to store cube info file
|
Potential connection failure could occur as data is being stored to storage.
Another potential issue could be the size of the json file, which has a limitation of 4MB in length.
|
LogicalSchemaConverter |
BE#859311 |
Creates a logical schema for the cube.
The logical schema is created based on the cube model defined. |
BE#859311 Creating Logical Schema. Data Source Title: <CubeTitle, ECM Model OID: <CubeID> |
BE#859311 Creating Logical Schema. Data Source Title: TestMySQL, ECM Model OID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
|
|
PhysicalSchemaConverter |
BE#404542 |
Creates the physical schema for the model. |
BE#404542 Creating Physical Schema. Data Source Title: <CubeTitle>, ECM Model OID: <CubeID> |
BE#404542 Creating Physical Schema. Data Source Title: TestMySQL, ECM Model OID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
|
|
TranslatorServiceImpl |
BE#498652 |
Generates dependencies for the plan to create the cube, meaning custom elements are dependent on what must be built first. |
BE#498652 Requesting for dependencies from Translator |
BE#498652 Requesting for dependencies from Translator |
BE#276087 Failed to get dependencies from Translator for cube + "<CubeName>" , error: <translator error returned> |
|
TranslationRestProvider |
BE#795211 |
Generates the dependencies. |
BE#795211 Start Generating Dependencies. translationServiceType: TranslationService, Payload: <CubeTitle> |
BE#795211 Start Generating Dependencies. translationServiceType: TranslationService, Payload: TestMySQL |
BE#130359 service not found, serviceName: Translation Service
|
The translation service is not accessible or there is a problem with ZooKeeper. |
BuildService |
BE#398437 |
Calls the identity pod to verify that the logged in user/token is authenticated and authorized to run the build. The user requires permission on the cube to allow "EditModel"; otherwise the build will fail.
However, if a permissioned user defined a scheduled build (cronjob), the job will run successfully as an unauthenticated user, and will therefore not fail due to the permission issue.
|
If the cube is being built for the first time, the general user permission to build a cube will be checked:
BE#895641 enforcePermissionByDataSource() - dataSourceId is null (possible reason: cube was not built yet)
OR
If it is an existing cube, the user requires permission to the given cube:
BE#398437 Validate permission. Data Source Title: <CubeTitle>
|
BE#398437 Validate permission. Data Source Title: TestMySQL |
BE#471044 User is unauthorized for this operation
BE#002491 User is unauthorized for this operation
BE#755909 Data source ID not found. <CubeTitle>
BE#584681 Validate permission unexpected status: <status description>
Exceptions: BE#274082 User is unauthorized for this operation |
The user is not authorized to perform this operation.
Solution: Assign the proper permission.
|
BuildService |
BE#916742 |
Indicates that there is not yet a source ID assigned to the cube, and therefore is a first build. |
BE#916742 Data source not found, assuming it is new: <new source ID> |
BE#916742 Data source not found, assuming it is new: 51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
BE#755909 Data source ID not found. <N\\A>
BE#538665 failed to get sessionId for dataSourceId: <data source ID> |
|
BuildService |
BE#920558 |
Initiates the build request (state machine). |
BE#920558 continueAsyncBuild Build called. Data Source Id: <Cube ID> |
BE#920558 continueAsyncBuild Build called. Data Source Id: 51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
|
|
BuildTracker |
BE#594038 |
Queues the build for the cube. |
BE#594038 Trying to add data source ID <Cube ID> to running initiate set |
BE#594038 Trying to add data source ID e51d6ac3-819c-48f7-b1c4-7003f8cdff7e to running initiate set |
BE#708352 Build already running for cube <CubeID>
BE#906122 Build not yet listed - exit quietly BE#128238 Build {} already removed - exit quietly BE#669279 Build {} was canceled - exit quietly
|
The build process will be force failed if there is already another build running for this cube.
These are cancellation reasons that would be outlined.
|
BuildFailedAction |
BE#357871 |
This message will appear in case the build is being canceled due to failure or build request duplication. |
BE#357871 Cleanup and log build failure: <BuildID> |
BE#357871 Cleanup and log build failure: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
n/a |
|
BuildTracker |
BE#060207 |
Confirms that a request has been added to build the cube. |
BE#060207 Added data source ID <CubeID> to running initiate set |
BE#060207 Added data source ID e51d6ac3-819c-48f7-b1c4-7003f8cdff7e to running initiate set |
|
|
BuildService |
BE#621989 |
Queueing up the state machine.
The build ID is associated with the given cube. |
BE#621989 Enqueueing the state machine prepare: <BuildID> |
BE#621989 Enqueueing the state machine prepare: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
BuildService |
BE#135750 |
Planning for the build is complete. |
BE#135750 Finished Planning Build. OID: <Cube ID>, Schema Id: <Schema ID>
|
BE#135750 Finished Planning Build. OID: b203e437-723f-4fd3-9879-ce9c5fe6039d, Schema Id: 958fb6ee-44e3-354e-9dad-3458f9a86ea8 |
|
|
BuildService |
BE#712274 |
Initiates the build state machine. |
BE#712274 Preparing build state machine: <BuildID> |
BE#712274 Preparing build state machine: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
PrepareBuildAction |
BE#660892 |
Retrieves models from the cube prior to starting the build from MongoDB.
This action is performed regardless of whether the models were created in the previous steps, because either the builds are running in parallel and we do not maintain models in memory, or if it is a scheduled build the process starts from here (i.e., models are created prior to the scheduled build). |
BE#660892 Retrieve Models. Data Source Id: <CubeID> |
BE#660892 RetrieveModels. Data Source Id: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
BE#170093 Failed to retrieve data source info for ID <CubeID>
BE#306199 Failed to retrieve ecm model for data source <CubeID> Failed to get ECM model <Cube Title> |
Failure may be the result of no access to storage for the retrieval.
|
PrepareBuildAction |
BE#415124 |
Indicates some details around the build, which include what type of build it is (e.g., full) and what is the build destination (e.g., MonetDB). |
BE#415124 Data source ID: <CubeID>, build ID: <BuildID>,, build type: <build type>, build originator: <originator of build>, build destination: <Destination Database> |
BE#415124 Data source ID: e51d6ac3-819c-48f7-b1c4-7003f8cdff7e, build ID: BuildID(buildId=27364933-0325-41c3-8bbe-e28c79f19244), build type: full, build originator: NextECM, build destination: Snowflake |
|
|
PrepareBuildAction |
BE#261800 |
This log provides the setting for the General Build (i.e., it applies to all cubes).
Settings are in the Configuration Manager >> Service Configuration >> Build section (available via 5 clicks on the Sisense logo):
● Base Table Max Threads (integer) - indicates how many threads are configured to run base table import of data. ● CustomTableMaxThreads.value (integer) - indicates how many threads will process custom table creation in parallel. ● AllowConcurrentBaseAndCustomElements.value (true/false) - will enable or disable the ability to run base table import and custom table creation in parallel. If true, the thread allocation setting will be used. |
BE#261800 Setting build throttling: BuildThrottling(baseTableThread=<Base Table Max Threads>, customTableColumnThreads=<CustomTableMaxThreads.value>, parallelBaseAndCustom=<AllowConcurrentBaseAndCustomElements.value> |
BE#261800 Setting build throttling: BuildThrottling(baseTableThread=4, customTableColumnThreads=1, parallelBaseAndCustom=false) |
|
|
SimpleBuildAction |
n/a |
Gets the cube info from the management pod.
|
n/a |
n/a |
BE#592202 Failed to get cube info from management. Data source: <cube title>, Status: <CUBE_NOT_FOUND> |
|
BaseWorkPlanBuilder
|
BE#434609 |
Creates a sanity work plan. The sanity workplan is geared toward assessing whether the selected build type can be executed on the cube. |
BE#434609 Creating Sanity Work Plan. Id: <Build ID> |
BE#434609 Creating Sanity Work Plan. Id: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Initializes the work plan. |
BE#143064 Initialize tasks added to work plan |
BE#143064 Initialize tasks added to work plan |
|
|
TasksCoordinatorImpl |
BE#000801 |
Runs the work plan. |
BE#000801 Running coordinate group. Id: <Build ID> |
BE#000801 Running coordinate group. Id: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
TaskGroup |
BE#289057 |
The log displays the build process that is about to be executed using a DOT (Graphviz) formatted diagram. Note you can use https://dreampuf.github.io/GraphvizOnline site to convert the DOT format below to a visual representation of the process.
|
BE#289057 ------- Dumping Task Group ----------- ------- DOT Start ----------- strict digraph G { <the work plan in DOT format> } ------- DOT END -----------]
|
------- DOT Start ----------- strict digraph G { concentrate=true; rankdir=BT; bgcolor=cornsilk; 1 [ label="Base Tables Validation" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 2 [ label="Build Destination Validation" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 3 [ label="Source Cube Exists Validation" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 4 [ label="Connections Validation" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 5 [ label="Models Validation" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 6 [ label="INITIALIZING" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 7 [ label="Initializing start message" fillcolor="azure" tooltip="Optional, cancellable" style="filled" ]; 8 [ label="SANITY_CHECKER" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 1 -> 2 [ dir="back" ]; 2 -> 3 [ dir="back" ]; 4 -> 5 [ dir="back" ]; 6 -> 4 [ dir="back" ]; 7 -> 6 [ dir="back" ]; 5 -> 1 [ dir="back" ]; 3 -> 8 [ dir="back" ]; } ------- DOT END -----------] |
||
TaskGroup |
BE#345155 |
Sets the state of the work plan to run. |
BE#345155 Group <Build ID> workplan state set to Running |
BE#345155 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state set to Running |
n/a |
|
TasksCoordinatorImpl |
BE#125123 |
|
BE#125123 Spawned task [SANITY_CHECKER], priority [0] |
BE#125123 Spawned task [SANITY_CHECKER], priority [0] |
|
|
AbstractTask |
BE#539145 |
|
BE#539145 Starting task [SANITY_CHECKER] under group <build ID> |
BE#539145 Starting task [SANITY_CHECKER] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
|
BE#029473 Task [SANITY_CHECKER] result status: COMPLETED |
BE#029473 Task [SANITY_CHECKER] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
|
BE#960343 Task [SANITY_CHECKER] completed. Duration: 00:00:00.001 |
BE#960343 Task [SANITY_CHECKER] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
BE#125123 Spawned task [Source Cube Exists Validation], priority [0] |
BE#125123 Spawned task [Source Cube Exists Validation], priority [0] |
|
|
AbstractTask |
BE#539145 |
Validates if the cube exists when the build behavior is Accumulate or Schema Change. If it does not exist, it will cause a build failure, however it will force a full build. |
BE#539145 Starting task [Source Cube Exists Validation] under group <build ID> |
BE#539145 Starting task [Source Cube Exists Validation] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Source Cube Exists Validation] result status: COMPLETED |
BE#029473 Task [Source Cube Exists Validation] result status: COMPLETED |
BE#029473 Task [Source Cube Exists Validation] result status: FAILED
BE#327169 Task [Source Cube Exists Validation] has failed: <reason for failure> |
This failure could appear if a non-full build is being attempted on building a new cube to a destination database (e.g., Snowflake).
Solution: N/A - full build will be enforced automatically. |
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Source Cube Exists Validation] completed. Duration: <duration> |
BE#960343 Task [Source Cube Exists Validation] completed. Duration: 00:00:00.000 |
BE#197825 Task [Source Cube Exists Validation] failed with exception: [com.sisense.build.builder.exception.BuildValidationException: Cube was not run for the first time]. Duration: <duration> |
|
RunSanityAction |
BE#716093 |
Indicates that the cube is running the build for the first time. |
BE#716093 Cube was not run for the first time |
BE#716093 Cube was not run for the first time |
|
|
RunSanityAction |
BE#422679 |
Action is taken in the case this is a first time build for a cube being built to a build destination. |
BE#422679 Build type for cube <cube title> will be changed from: <build behavior selected> to: 'full' |
BE#422679 Build type for cube TestMySQLwill be changed from: 'accumulate' to: 'full' |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiate task. |
BE#125123 Spawned task [Build Destination Validation], priority [0] |
BE#125123 Spawned task [Build Destination Validation], priority [0] |
|
|
AbstractTask |
BE#539145 |
This task checks if the data type of the source (e.g., in Snowflake) is equal to the new destination, to ensure that an existing cube can be successfully modified using build behavior of Incremental or Schema Change. This is performed only for accumulate and schema change build behavior. |
BE#539145 Starting task [Build Destination Validation] under group <build ID> |
BE#539145 Starting task [Build Destination Validation] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
BE#094445 Sanity check failed to cube <Cube Title> because of <reason for failure>
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Build Destination Validation] result status: COMPLETED |
BE#029473 Task [Build Destination Validation] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiate task. |
BE#125123 Spawned task [Base Tables Validation], priority [0] |
BE#125123 Spawned task [Base Tables Validation], priority [0] |
|
|
AbstractTask |
BE#539145 |
Validates that base tables are set with full build behavior. |
BE#539145 Starting task [Base Tables Validation] under group <build ID> |
BE#539145 Starting task [Base Tables Validation] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
Build 'By Table' was requested but all tables are marked as 'Replace'. |
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Base Tables Validation] result status: COMPLETED |
BE#029473 Task [Base Tables Validation] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Base Tables Validation] completed. Duration: <duration>
|
BE#960343 Task [Base Tables Validation] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiate task. |
BE#125123 Spawned task [Models Validation], priority [0] |
BE#125123 Spawned task [Models Validation], priority [0] |
|
|
AbstractTask |
BE#539145 |
Checks if schema has changed, and if so, checks that the build behavior is set to schema change. |
BE#539145 Starting task [Models Validation] under group <build ID> |
BE#539145 Starting task [Models Validation] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
BE#462345. Build 'By Table' with changes in schema detected. Please perform a 'Schema Changes' build first. |
Mismatch on the build behavior requiring a schema-changes build to run. |
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Models Validation] result status: COMPLETED |
BE#029473 Task [Models Validation] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Models Validation] completed. Duration: <duration>
|
BE#960343 Task [Models Validation] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiate task. |
BE#125123 Spawned task [Connections Validation], priority [0] |
BE#125123 Spawned task [Connections Validation], priority [0] |
Got an empty connection parameters for <connection provider> |
|
AbstractTask |
BE#539145 |
Checks if there is a proper connection setup for the build to destination. |
BE#539145 Starting task [Connections Validation] under group <build ID> |
BE#539145 Starting task [Connections Validation] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Connections Validation] result status: COMPLETED |
BE#029473 Task [Connections Validation] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Connections Validation] completed. Duration: <duration> |
BE#960343 Task [Connections Validation] completed. Duration: 00:00:00.000 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiate task. |
BE#125123 Spawned task [INITIALIZING] |
BE#125123 Spawned task [INITIALIZING] |
|
|
AbstractTask |
BE#539145 |
Indicates that the initialization stage of the build has begun. |
BE#539145 Starting task [INITIALIZING] under group <Build ID> |
BE#539145 Starting task [INITIALIZING] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [INITIALIZING] result status: <status>
|
BE#029473 Task [INITIALIZING] result status: COMPLETED
|
BE#507776 Task [INITIALIZING] is canceled, thrown: <exception string> |
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [INITIALIZING] completed. Duration: <run time for the step of the work plan> |
BE#960343 Task [INITIALIZING] completed. Duration: 00:00:00.001 |
BE#197825 Task [INITIALIZING] failed with exception: <ERROR>. Duration: <duration in milliseconds>
BE#697137 Task [INITIALIZING] failed, exception object is null. Duration: <duration in milliseconds>
BE#048944 Task [INITIALIZING] failed. Duration: <duration in milliseconds>. Task is not mandatory - continue running.
BE#109647 End execution of [INITIALIZING] failed: <error string>. |
|
TasksCoordinatorImpl |
BE#125123 |
Instantiate task. |
BE#125123 Spawned task [Initializing start message] |
BE#125123 Spawned task [Initializing start message] |
|
|
AbstractTask |
BE#539145 |
Sends a notification (e.g., to the GUI) that the initialization stage of the build has begun. |
BE#539145 Starting task [Initializing start message] under group <Build ID> |
BE#539145 Starting task [Initializing start message] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Initializing start message] result status: <status>
|
BE#029473 Task [Initializing start message] result status: COMPLETED
|
BE#507776 Task [Initializing start message] is canceled, thrown: <exception string> |
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Initializing start message] completed. Duration: <run time for the step of the work plan> |
BE#960343 Task [Initializing start message] completed. Duration: 00:00:00.001 |
BE#197825 Task [Initializing start message] failed with exception: <ERROR>. Duration: <duration in milliseconds>
BE#697137 Task [Initializing start message] failed, exception object is null. Duration: <duration in milliseconds>
BE#048944 Task [Initializing start message] failed. Duration: <duration in milliseconds>. Task is not mandatory - continue running.
BE#109647 End execution of [Initializing start message] failed: <error string>. |
|
TaskGroup |
BE#345155 |
Sanity work plan is completed. |
BE#345155 Group <build ID> workplan state set to Completed |
BE#345155 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state set to Completed |
BE#345155 Group <build ID> workplan state set to Failed |
|
TaskGroup |
BE#345155 |
n/a |
BE#345155 Group <build ID>workplan state set to Completed |
BE#345155 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state set to Finalizing |
|
|
TasksCoordinatorImpl |
BE#345155 |
Sets the sanity plan to finalize. |
BE#345155 Group <build ID> workplan state set to Finalizing |
BE#936003 Group 27364933-0325-41c3-8bbe-e28c79f19244 executing post tasks |
|
|
TaskGroup |
BE#345155 |
Executes post sanity tasks. |
BE#936003 Group <build ID> executing post tasks |
BE#345155 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state set to Completed |
|
|
TasksCoordinatorImpl |
BE#753071 |
Sets execution to done. |
BE#753071 Execution DONE: groupId=<build ID>, state=Completed |
BE#753071 Execution DONE: groupId=27364933-0325-41c3-8bbe-e28c79f192445, state=Completed |
BE#193546 FAILED TO STOP EXECUTION: groupId=<Build ID> |
An error occurs when the build is forced to stop and execution of the task fails. |
TasksCoordinatorImpl |
BE#010801 |
Optional
If the build is canceled, a request to cancel the overall task group for the build will be invoked. |
BE#010801 Canceled task group <Build ID>: <Status> |
BE#010801 Canceled task group 27364933-0325-41c3-8bbe-e28c79f1924: DONE |
|
|
BuildService |
BE#451341 |
Inserts build to queue. |
BE#451341 Enqueueing the state machine and build plan: <Build ID> |
BE#451341 Enqueueing the state machine and build plan: 27364933-0325-41c3-8bbe-e28c79f1924 |
|
|
BuildService |
BE#710254 |
Initiates the state machine for the build. |
BE#710254 Running the state machine: <Build ID>
OR
BE#599941 Build plan was triggered, waiting: <Build ID> |
BE#710254 Running the state machine: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
n/a |
n/a |
The steps for the state machine that maintains the progression of the build. The stage will be performed in the following order:
|
started END CREATE_PROCESS STORE_DATA MARK_STARTED START_BUILD CREATE_CUBE RUN_PRE_BUILD_PLUGIN / MARK_STARTED / uuid=620437aa-17c0-4a5c-b5be-baa90ceb828c / ID=<CubeID> |
started CREATE_CUBE STORE_DATA START_BUILD RUN_PRE_BUILD_PLUGIN CREATE_PROCESS END MARK_STARTED / MARK_STARTED /uuid=620437aa-17c0-4a5c-b5be-baa90ceb828c / ID=e51d6ac3-819c-48f7-b1c4-7003f8cdff7e |
|
|
BuildStateMachineConfiguration |
BE#949662 |
Moves the work plan to be marked as started in the state machine. |
BE#949662 Move from:null to:MARK_STARTED |
BE#949662 Move from:null to:MARK_STARTED |
If event is not accepted, an error will show:
BE#987875 Event not accepted: <EventName> |
|
BuildLogger |
BE#353798 |
The cube is being created. |
BE#353798 Logger: (PREPARING_CUBE) Starting build process |
BE#353798 Logger: (PREPARING_CUBE) Starting build process |
|
The cube creation by the management pod has failed. Investigate the Management Pod and/or (if the build is to MonetDB) the EC BLD log to further investigate root cause. Potential causes could be anything that interrupts the process (e.g., backup process being kicked off at same time the build is done, Management Pod failure/restarts, etc.), lack of system resources, or breaching a certain configuration (e.g., number of cubes deployed limit).
|
CreateCubeAction |
BE#322635 |
Prepares a request to be sent to the management pod to bring up the bld-pod. |
BE#322635 Requesting cube from Management. Data Source Title: <Cube Title> |
BE#322635 Requesting cube from Management. Data Source Title: TestMySQL |
|
|
InternalRequestProxy |
BE#166586 |
Indicates that a request is being sent and waits for a response from the management pod. Management will respond with success or failure to bring up the pod. |
BE#166586 Sent async request ID=<request ID>, waiting...] |
BE#166586 Sent async request ID=30ecc294-fd8e-4bc5-8825-6b14cb42dea0 (getCubeForBuild), waiting... |
BE#130359 service not found, serviceName: Management Service
BE#919403 Async request ID=<request ID> timeout
BE#766092 Error from async request ID=<requestid> on get CubeFor.Build
BE#150935 Timeout on Get cube for build.
BE#468714 Failed to create cube for build process
BE#994601 build to <Build to Destination DB Type> is not supported for provider <Build to Destination DB Provider>; Build to destination is not supported with old connector |
If Zookeeper is down or the management service is not found.
This will designate a timeout on the request to the management pod. Timeout duration is based on the configuration in the Configuration Manager in "Base configuration" with parameter: serviceCallTimeout.value.
Check management.log to further investigate what happened to this request.
In most cases, this designates that the management pod is taking a while to bring up a new pod for the build.
This error will show the error message in case the management does respond to the request in time, but with an error. |
RequestFilter |
BE#683109 |
Send an asynchronous request to the management pod. |
BE#683109 Start handling request - url=http://ip:8086/internal/asyncResponse, userId=<UserID>, userRole=<UserRole> |
BE#683109 Start handling request - url=http://10.233.100.140:8086/internal/asyncResponse, userId=6124c5dc2b42f5001ad4541a, userRole=super |
|
|
InternalRestController |
BE#541125 |
Receive confirmation from management that the request has been received. |
BE#541125 got async response for ID <request ID> |
BE#541125 got async response for ID 30ecc294-fd8e-4bc5-8825-6b14cb42dea0 |
BE#948724 Management Service returned an error: <returned error message> BE#468714 Management response: <any of the following errors>
|
Indicates a failure on the management side in processing the request to bring up a new BLD Pod. |
RequestFilter |
BE#587104 |
Request is completed. |
BE#587104 Finished handling request - <URL for request> |
BE#587104 Finished handling request - http://10.233.100.140:8086/internal/asyncResponse] |
|
|
CreateCubeAction |
BE#459006 |
Record the turnaround time it took for the request to be processed.
At this point, the management pod has confirmed bld=pod is up. |
BE#459006 Requesting cube from Management returned in <request processing time by management cube> ms |
BE#459006 Requesting cube from Management returned in 15753 ms |
|
|
Establish connection to external data sources to import data. |
||||||
DataSourceClientFactoryImpl |
BE#673011 |
This indicates which datasource the build will connect to. |
BE#673011 Get data source client - connectorId=<data source provider>, scope=<context of the connection, for example as a result of build or Live connection> |
BE#673011 Get data source client - connectorId=MySql, scope=BUILD] |
BE#445373 mysql-connector-java-8.0.13.jar is a different version of mysql-connector-java-8.0.25.jar and will not be loaded. |
|
BaseDataSourceClient |
BE#976792
OR
BE#028731 |
If the connection type requires a connection validation, it will be validated. Otherwise, validation is skipped. |
BE#976792 Using connection from connection pool without validating
OR
BE#028731 About to valid connection from connection pool |
BE#976792 Using connection from connection pool without validating
OR
BE#028731 About to valid connection from connection pool |
BE#916022 connection is not valid creating new connection"
|
Connection validation failed and a new connection will be open to data source. |
BaseDataSourceClient |
BE#149955 |
Loads the configuration for the configured connector. |
BE#149955 Executing get driver metadata for connector - connectorId=<data source provider>
|
BE#149955 Executing get driver metadata for connector - connectorId=mysql |
BE#139161 Failed to get driver metadata for connector - connectorId=<data source provider>, reason=Failed to connect
OR
BE#583000 Failed to get driver metadata for connector", <exception details>
|
This will occur if the configuration data for the connection cannot be loaded (e.g., from MongoDB).
Double-check whether the connection is available to MongoDB (e.g., see if the GUI displays the connection details). |
BaseDataSourceClient |
BE#675750 |
Indicates the connection pool ID which was established as part of the connection, or that was used. |
BE#675750 Return connection to pool - conn=<connection ID> |
BE#675750 Return connection to pool - conn=com.mysql.cj.jdbc.ConnectionImpl@7488a913 |
BE#692718 Not reusing connection due to query execute error
BE#672530 Failed to close connection <exception> |
If the query fails it will close out the pool. That is, any connection established will be closed.
If the pool cannot be closed, this error will appear. |
BaseDataSourceClient |
BE#395627 |
Indicates that the connection to the data source was successful. |
BE#395627 Connection to data source <data source provider>l established
|
BE#395627 Connection to data source MySql established |
BE#732669 Failed to connect. The driver of connector: <Connector> is null. Could not load the driver.
BE#324945 The method beforeConnection failed with the following error: <exception>
Could not establish connection using the provided parameters
BE#239292 The method afterConnection failed with the following error <error message>
BE#611992 Failed to connect to data source <Connector> with the following error: <returned error from connector>
For example: BE#611992 Failed to connect to data source <Connector> with the following error: CJ communications error: Communications link failure
BE#253325 Query was canceled
BE#181265 <Indicate the SQL exception captured>
|
The connection does not have a proper driver in place.
Failed in initializing the driver (i.e., failure before a connection is attempted).
Configured connection details are invalid or connection cannot be established with them.
The physical connection is made; however, additional steps in establishing the connection have failed.
A general error that provides details about the failure given that the connector returned an error from the data source.
Points at connectivity issues with the connection system, which might still be connectivity or incorrect connection details.
The query request to the data source is canceled if the connection is not established properly.
Capture the SQL error returned.
Solution: Follow through troubleshooting methods for connectivity to data sources to find the actual root cause. |
BuildStateMachineConfiguration |
BE#949662 |
Move the state machine to start creating the cube. |
BE#949662 Move from:MARK_STARTED to:CREATE_CUBE |
BE#949662 Move from:MARK_STARTED to:CREATE_CUBE |
BE#987875 Event not accepted: <event name> |
|
RunPreBuildPluginAction |
BE#982374
Or
BE#896881 |
Checks if there is a pre-build plugin configured for the cube. If there is, runs the prebuild plugin.
Note: this option is not yet available. |
BE#982374 No pre-build plugin available
OR
BE#896881 Run pre build plugin for <BuildID> |
BE#982374 No pre-build plugin available |
BE#833692 Build plugins are not yet available for B2D
BE#571675 Plugin changed the ECM model - not supported
BE#567342 Plugin handling failed: Build canceled by plugin
BE#363706 ECM model modified - restarting...
|
Note: pre-build plugins are not yet enabled.
|
BuildStateMachineConfiguration |
BE#949662 |
Move the state machine to the stage of running of the pre-build plugins. |
BE#949662 Move from:CREATE_CUBE to:RUN_PRE_BUILD_PLUGIN |
BE#949662 Move from:CREATE_CUBE to:RUN_PRE_BUILD_PLUGIN |
|
|
BuildLogger |
BE#353798 |
Indicates the saving of the metadata for the cube into the farm, which will later be used by the process that will interact with the data source platform (e.g., EC BLD pod for MonetDB). |
BE#353798 Logger: (STORE_DATA) Storing data to disk
|
BE#353798 Logger: (STORE_DATA) Storing data to disk
|
BE#449244 Failed to write .ElastiCube.json. Failed to store ECM model file.
BE#785588 Failed to write: Failed to store ECM model file |
This error indicates an inability to write the ElastiCube metadata, meaning that there is a problem writing to the storage. |
BuildLogger |
BE#353798 |
Write a log that the build work plan is being created. |
BE#353798 Logger: (PREPARING_WORK_PLAN) Creating work-plan |
BE#353798 Logger: (PREPARING_WORK_PLAN) Creating work-plan |
|
|
BaseWorkPlanBuilder |
BE#491492 |
Creates the build workplan. |
BE#491492 Creating Build Work Plan |
BE#491492 Creating Build Work Plan |
|
|
BaseWorkPlanBuilder |
BE#790911 |
Indicates the work plan will be executed for the Build ID. |
BE#790911 Build Work Plan Id: <Build ID> |
BE#790911 Build Work Plan Id: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds initialization tasks to the work plan. |
BE#143064 Initializing tasks added to work plan |
BE#143064 Initializing tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds dimension table(s) tasks to the work plan. |
BE#143064 Dim Table tasks added to work plan |
BE#143064 Dim Table tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds base table tasks to the work plan. |
BE#143064 Base Table tasks added to work plan |
BE#143064 Base Table tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds custom columns tasks to the work plan. |
BE#143064 Custom Columns tasks added to work plan |
BE#143064 Custom Columns tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds custom table tasks to the work plan. |
BE#143064 Custom Table tasks added to work plan |
BE#143064 Custom Table tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds custom code tasks to the work plan. |
BE#143064 Custom Code Table tasks added to work plan |
BE#143064 Custom Code Table tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds table delete tasks to the work plan. |
BE#143064 Drop Tables tasks added to work plan |
BE#143064 Drop Tables tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds table rename tasks to the work plan. |
BE#143064 Rename Tables tasks added to work plan |
BE#143064 Rename Tables tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds column(s) delete tasks to the work plan. |
BE#143064 Drop Table Columns tasks added to work plan |
BE#143064 Drop Table Columns tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds column(s) rename tasks to the work plan. |
BE#143064 Rename Table Columns tasks added to work plan |
BE#143064 Rename Table Columns tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
|
BE#143064 Recalculate Columns tasks added to work plan |
BE#143064 Recalculate Columns tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds a task that will generate dependencies for the build. |
BE#143064 Dependencies Attacher tasks added to work plan |
BE#143064 Dependencies Attacher tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds finalization tasks to the work plan. |
BE#143064 Finalizing tasks added to work plan |
BE#143064 Finalizing tasks added to work plan |
|
|
BuildV2WorkPlanBuilder |
BE#143064 |
Adds the completion tasks to the work plan. |
BE#143064 Finish tasks added to work plan |
BE#143064 Finish tasks added to work plan |
|
|
BuildStateMachineConfiguration |
BE#949662 |
Moves the state machine to the cube creation process. |
BE#949662 Move from:STORE_DATA to:CREATE_PROCESS |
BE#949662 Move from:RUN_PRE_BUILD_LUGIN to:CREATE_PROCESS |
|
|
BuildsTracker |
BE#605645 |
Sets the build for the cube to run. |
BE#605645 Trying to add build info to data source ID <CubeID> to maps |
BE#605645 Trying to add build info to data source ID e51d6ac3-819c-48f7-b1c4-7003f8cdff7e to maps |
BE#780497 Build was not marked to run <CubeID>
BE#934333 Build already running for cube <CubeID> |
Cannot set the status to run for the cube since it is marked not to be run.
Cannot set the status to run for the cube as it is already running. |
BuildsTracker |
BE#146799 |
Adds the build to the map (containing the list of builds queued to run). |
BE#146799 Adding build ID BuildID(buildId=<BuildID>) from maps |
BE#146799 Adding build ID BuildID(buildId=27364933-0325-41c3-8bbe-e28c79f19244) from maps |
|
|
BuildsTracker |
BE#770490 |
Adding the build to the map (containing the list of builds queued to run) was successful. |
BE#770490 Build ID BuildID(buildId=<BuildID>) was added to maps |
BE#770490 Build ID BuildID(buildId=27364933-0325-41c3-8bbe-e28c79f19244) was added to maps |
|
|
BuildsTracker |
BE#885182 |
Triggers the build. |
BE#885182 End trigger build for data source ID: <CubeTitle> |
BE#885182 End trigger build for data source ID: TestMySQL |
|
|
TasksCoordinatorImpl |
BE#000801 |
Initiates the work plan for the Build ID. |
BE#000801 Running coordinate group. Id: <BuildID> |
BE#000801 Running coordinate group. Id: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
TaskGroup |
BE#289057 |
This is an illustrative flow chart that shows the workflow for the build. The content of this changes based on the type of build and the details in the cube model.
The following DOT graph lays out the work plan for the rest of the build. You can graph this online at:
https://dreampuf.github.io/GraphvizOnline
|
BE#289057 ------- Dumping Task Group -----------
strict digraph G { concentrate=true; rankdir=BT; bgcolor=cornsilk; 1 [ label="Activate schema" fillcolor="azure" tooltip="Mandatory, not cancellable" style="filled" ]; 2 [ label="Drop Parallel Stage Tables for\nLocations" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 3 [ label="Drop Parallel Stage Tables for\nEmployees" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 4 [ label="Stopping cube" fillcolor="azure" tooltip="Mandatory, not cancellable" style="filled" ]; 5 [ label="Analytics upload" fillcolor="azure" tooltip="Optional, not cancellable" style="filled" ]; 6 [ label="Attaching cube\n[P:10]" fillcolor="azure" tooltip="Mandatory, not cancellable, priority = 10" style="filled" ]; 7 [ label="Storing ElastiCubeInfo" fillcolor="azure" tooltip="Optional, not cancellable" style="filled" ]; 8 [ label="Storing EcmModel\n[P:10]" fillcolor="azure" tooltip="Optional, not cancellable, priority = 10" style="filled" ]; 9 [ label="BASE" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 10 [ label="SCHEMA" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 11 [ label="Build Column\nEmployees.Custom Column\n[P:3497]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 3497" style="filled" ]; 12 [ label="Create Column\nEmployees.Custom Column\n[P:3497]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 3497" style="filled" ]; 13 [ label="Build Table\nCustomTable\n[P:1136]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 1136" style="filled" ]; 14 [ label="CUSTOM" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 15 [ label="Merge Parallel Stage Tables for\nEmployees\n[P:9302]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 9302" style="filled" ]; 16 [ label="Build Table\nEmployees\n[P:9302]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 9302" style="filled" ]; 17 [ label="Create Parallel Stage Tables for\nEmployees\n[P:9302]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 9302" style="filled" ]; 18 [ label="Build Table\nLocations\n[P:52460]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 52460" style="filled" ]; 19 [ label="Create Parallel Stage Tables for\nLocations\n[P:52460]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 52460" style="filled" ]; 20 [ label="COLUMN_RENAMER" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 21 [ label="Create Schema" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 22 [ label="Init Dependencies message" fillcolor="azure" tooltip="Optional, cancellable" style="filled" ]; 23 [ label="Create Bucket" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 24 [ label="Initializing end message" fillcolor="azure" tooltip="Optional, cancellable" style="filled" ]; 25 [ label="INITIALIZING" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 26 [ label="Create Database" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 27 [ label="Create Table\nEmployees\n[P:9302]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 9302" style="filled" ]; 28 [ label="Create Table\nLocations\n[P:52460]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 52460" style="filled" ]; 29 [ label="Creating live models" fillcolor="azure" tooltip="Mandatory, cancellable" style="filled" ]; 30 [ label="DIM_TABLES_CREATOR" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 31 [ label="DIM_TABLES_DESTRUCTOR" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 32 [ label="INDEXING_CHANGES" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 33 [ label="Merge Parallel Stage Tables for\nLocations\n[P:52460]" fillcolor="azure" tooltip="Mandatory, cancellable, priority = 52460" style="filled" ]; 34 [ label="ELEMENTS_DESTRUCTOR" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 35 [ label="FINALIZING" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 36 [ label="Finalizing message" fillcolor="azure" tooltip="Optional, not cancellable" style="filled" ]; 37 [ label="TABLE_RENAMER" fillcolor="lightgray" shape="box" tooltip="Check point" style="filled" ]; 38 [ label="Storing PhysicalDbSchema" fillcolor="azure" tooltip="Optional, not cancellable" style="filled" ]; 39 [ label="Storing metadata" fillcolor="azure" tooltip="Optional, not cancellable" style="filled" ]; 40 [ label="Storing new CubeModels" fillcolor="azure" tooltip="Mandatory, not cancellable" style="filled" ]; 1 -> 2 [ dir="back" ]; 1 -> 3 [ dir="back" ]; 1 -> 4 [ dir="back" ]; 5 -> 4 [ dir="back" ]; 6 -> 7 [ dir="back" ]; 6 -> 8 [ dir="back" ]; 9 -> 10 [ dir="back" ]; 11 -> 12 [ dir="back" ]; 13 -> 11 [ dir="back" ]; 13 -> 14 [ dir="back" ]; 13 -> 15 [ dir="back" ]; 16 -> 17 [ dir="back" ]; 18 -> 19 [ dir="back" ]; 20 -> 21 [ dir="back" ]; 20 -> 22 [ dir="back" ]; 20 -> 23 [ dir="back" ]; 14 -> 24 [ dir="back" ]; 23 -> 25 [ dir="back" ]; 12 -> 14 [ dir="back" ]; 12 -> 15 [ dir="back" ]; 26 -> 25 [ dir="back" ]; 17 -> 27 [ dir="back" ]; 19 -> 28 [ dir="back" ]; 21 -> 26 [ dir="back" ]; 27 -> 9 [ dir="back" ]; 28 -> 9 [ dir="back" ]; 29 -> 6 [ dir="back" ]; 30 -> 21 [ dir="back" ]; 30 -> 22 [ dir="back" ]; 30 -> 23 [ dir="back" ]; 31 -> 32 [ dir="back" ]; 3 -> 15 [ dir="back" ]; 2 -> 33 [ dir="back" ]; 34 -> 21 [ dir="back" ]; 34 -> 22 [ dir="back" ]; 34 -> 23 [ dir="back" ]; 35 -> 11 [ dir="back" ]; 35 -> 13 [ dir="back" ]; 35 -> 15 [ dir="back" ]; 35 -> 33 [ dir="back" ]; 36 -> 35 [ dir="back" ]; 32 -> 30 [ dir="back" ]; 32 -> 37 [ dir="back" ]; 22 -> 25 [ dir="back" ]; 24 -> 31 [ dir="back" ]; 15 -> 16 [ dir="back" ]; 33 -> 18 [ dir="back" ]; 10 -> 24 [ dir="back" ]; 4 -> 36 [ dir="back" ]; 8 -> 4 [ dir="back" ]; 7 -> 4 [ dir="back" ]; 38 -> 4 [ dir="back" ]; 39 -> 6 [ dir="back" ]; 40 -> 4 [ dir="back" ]; 37 -> 34 [ dir="back" ]; 37 -> 20 [ dir="back" ]; }
n/a |
|||
TaskGroup |
BE#345155 |
Sets the work plan to running mode (or indicates if the work plan is already running). |
BE#345155 Group <BuildID> workplan state set to Running
OR
BE#807413 Group <BuildID> workplan state is already Running |
BE#345155 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state set to Running
BE#807413 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state is already Running |
|
|
TasksCoordinatorImpl |
BE#125123 |
|
BE#125123 Spawned task [INITIALIZING], priority [0] |
BE#125123 Spawned task [INITIALIZING], priority [0] |
|
|
BuildStateMachineConfiguration |
BE#949662 |
State machine moved to the start of the build. |
BE#949662 Move from:CREATE_PROCESS to:START_BUILD |
BE#949662 Move from:CREATE_PROCESS to:START_BUILD |
|
|
BuildStateMachineConfiguration |
BE#949662 |
State machine moved to the end of the build. |
BE#949662 Move from:START_BUILD to:END |
BE#949662 Move from:START_BUILD to:END |
|
|
TaskGroup |
BE#599941 |
Executes the build workflow plan. |
BE#599941 Build plan was triggered, waiting: <BuildID> |
E#599941 Build plan was triggered, waiting: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#539145 |
Initiates a task to check that dependencies are met in order for the build to run properly. |
BE#539145 Starting task [INITIALIZING] under group <BuildID> |
BE#539145 Starting task [INITIALIZING] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
TasksCoordinatorImpl |
BE#029473 |
Indicates that the task was executed successfully. |
BE#029473 Task [INITIALIZING] result status: COMPLETED |
BE#029473 Task [INITIALIZING] result status: COMPLETED |
BE#029473 Task [INITIALIZING] result status: FAILED
BE#327169 Task [INITIALIZING] has failed: <error message> |
|
TasksCoordinatorImpl |
BE#960343 |
Indicates how long it took to run the task. |
BE#960343 Task [INITIALIZING] completed. Duration: <duration> |
BE#960343 Task [INITIALIZING] completed. Duration: 00:00:00.001 |
BE#197825 Task [INITIALIZING] failed with exception: <ERROR>. Duration: <duration in milliseconds>
BE#697137 Task [INITIALIZING] failed, exception object is null. Duration: <duration in milliseconds>
BE#048944 Task [INITIALIZING] failed. Duration: <duration in milliseconds>. Task is not mandatory - continue running. |
|
BuildService |
BE#599941 |
|
BE#599941 Build plan was triggered, waiting: <BuildID> |
BE#599941 Build plan was triggered, waiting: 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
E#125123 Spawned task [Init dependencies Message] |
E#125123 Spawned task [Init dependencies Message] |
|
|
AbstractTask |
BE#539145 |
Executes the task that checks that all dependencies are met in order for the build to run. |
BE#539145 Starting task [Init dependencies message <CubeTitle>] under group <BuildID> |
BE#539145 Starting task [Init dependencies message] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
BuildMessageListenerService |
BE#353798 |
Sends a notification that the build is in the dependency checks in the cube model. |
BE#353798 Logger: (INIT_DEPENDENCIES) |
BE#353798 Logger: (INIT_DEPENDENCIES) |
|
|
AbstractTask |
BE#029473 |
Indicates the task completed successfully. |
BE#029473 Task [Init dependencies Message] result status: COMPLETED |
BE#029473 Task [Init dependencies Message] result status: COMPLETED |
BE#029473 Task [Init dependencies message] result status: FAILED
BE#327169 Task [Init dependencies message] has failed: <error message> |
|
TasksCoordinatorImpl |
BE#960343 |
Indicates how long it took the task to run. |
BE#960343 Task [Init dependencies message] completed. Duration: <duration> |
BE#960343 Task [Init dependencies message] completed. Duration: <duration> |
BE#197825 Task [Init dependencies message] failed with exception: <ERROR>. Duration: <duration in milliseconds>
BE#697137 Task [Init dependencies message] failed, exception object is null. Duration: <duration in milliseconds>
BE#048944 Task [Init dependencies] failed. Duration: <duration in milliseconds>. Task is not mandatory - continue running. |
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
BE#125123 Spawned task [Create Bucket], priority [0] |
BE#125123 Spawned task [Create Bucket], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts the task. |
BE#539145 Starting task [Create Bucket] under group <BuildID> |
BE#539145 Starting task [Create Bucket] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
BucketAmazonS3CreatorTaskV2 |
BE#507678 |
Accesses the bucket in AWS S3, and if it does not exist, creates it. |
BE#507678 Bucket created, location: <location of where bucket is created> |
BE#507678 Bucket created, location: |
BE#117366 Could not create S3 bucket, error: <name of bucket>
BE#366389 Failed to create S3 bucket: <name of bucket>
BE#366389 Cannot create bucket for this Cube. No bucket name configured;
BE#366389 Failed to create S3 bucket: <bucket name>. Illegal bucket name: Bucket name should not contain uppercase characters; Cannot create bucket for this cube.
BE#366389 Failed to create S3 bucket: <name of bucket>. The AWS Access Key Id you provided does not exist in our records. (Service: Amazon S3; Status Code: 403; Error Code: InvalidAccessKeyId; Request ID: 7VVFJ8HZ2QY009KP; S3 Extended Request ID: koc7lgy2ZZ9AT8avHXzQoMhFfYwKJDnabde7gozpz6M2FxY7uOz89YJtk2KHKFcXuteK5K5Rfrc=; Proxy: null); Cannot create bucket for this cube.
BE#366389 Failed to create S3 bucket: <bucket name>. The request signature we calculated does not match the signature you provided. Check your key and signing method. (Service: Amazon S3; Status Code: 403; Error Code: SignatureDoesNotMatch; Request ID: 7PFR3RT2BPXVMH7B; S3 Extended Request ID: SHNgwkn6Msa/3p/9JSuHQSTgHLBpxKl2ypzue7131gGPcG5R021rcILFWLrdaKrKSe/uBfpIgZ4=; Proxy: null); Cannot create bucket for this cube.
BE#366389 Failed to create S3 bucket: <bucket name>. Sdk client: Unable to execute HTTP request. Unknown host: <region URL>; Cannot create bucket for this cube. |
Bucket could not be created.
Bucket could not be created.
No configuration is in place for a bucket to be created.
A bucket was configured with illegal characters, for example all need to be lower case.
Incorrect access key is configured for the given storage.
Invalid key configured for the given storage (e.g., AWS bucket)
Invalid region configured for the given storage. |
BuildMessageListenerService |
BE#353798 |
Sends a notification that the bucket creation task is being performed. |
BE#353798 Logger: (BUCKET_CREATION) Creating bucket |
BE#353798 Logger: (BUCKET_CREATION) Creating bucket |
|
|
AbstractTask |
BE#029473 |
The task is completed. |
BE#029473 Task [Create Bucket] result status: COMPLETED] |
BE#029473 Task [Create Bucket] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Indicates how long it took to run the task. |
BE#960343 Task [Create Bucket] completed. Duration: <duration> |
BE#960343 Task [Create Bucket] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
BE#125123 Spawned task [Create Database], priority [0] |
BE#125123 Spawned task [Create Database], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts the task. |
BE#539145 Starting task [Create Database] under group <BuildID> |
BE#539145 Starting task [Create Database] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
SnowflakeDatabaseHandlerV2 (For Snowflake Connection) |
BE#654889 |
Creates the database that was configured in the Build to Destination settings for the given cube.
This is an SQL statement that creates the given database in the destination database warehouse.
If a database exists, SQL execution will return an error (e.g., error code 500310 or 2002). |
BE#654889 Creating Snowflake database <DatabaseName> |
BE#654889 Creating Snowflake database 'BE' |
BE#606139 Failed to check if <destination database> schema exists: <database.schema name>
BE#296353 Unable to use database '<database name>', make sure access was granted.
Connectors: BE#945051 SQL error. SQL compilation error: Object does not exist, or operation cannot be performed.
|
This database creation capability is dependent on the proper user permissions to work. It is recommended that the destination database be created prior to starting to use the feature. |
RedshiftDatabaseHandlerV2 |
BE#558200 |
Creates the database if it does not already exist in Redshift.
This is an SQL statement that creates the given database in the destination database warehouse.
If a database exists, SQL execution will return an error (e.g., error code 500310 or 2002). |
BE#558200 Creating Redshift database '<database name>' |
BE#558200 Creating Redshift database 'TheDatabase' |
BE#945051 SQL error. SQL compilation error: Object does not exist, or operation cannot be performed. Connectors: BE#945051 SQL error. SQL compilation error: Object does not exist, or operation cannot be performed.
|
Failed to create database because of permissions, or it already exists. |
BaseDataSourceClient |
BE#673011 |
Connector used to establish connection to destination database. |
BE#673011 Get data source client - connectorId=<destinationdatabase>, scope=BTD |
BE#673011 Get data source client - connectorId=SnowflakeJDBC, scope=BTD |
|
|
BaseDataSourceClient |
BE#345102 |
Gets configuration for connector for destination database. |
BE#345102 Updating connector configuration connectionSetFunctions, according to scope BTD |
BE#345102 Updating connector configuration connectionSetFunctions, according to scope BTD |
|
|
BaseDataSourceClient |
BE#033887 |
Indicates the connection string which is configured to be used to connect to the destination database. |
BE#033887 Connecting to data source - server=jdbc:Snowflake/Redshift://<connection string> |
BE#033887 Connecting to data source - server=jdbc:Snowflake/Redshift://sisensetest.us-east-2.aws.Snowflake/Redshiftcomputing.com/?warehouse=BE&role=WRITER&db=BE&] |
|
|
BaseDataSourceClient |
BE#97679 |
Indicates that a connection already exists in the connection pool (if enabled) to the given destination database, and is reused. |
BE#976792 Using connection from connection pool without validating |
BE#976792 Using connection from connection pool without validating |
|
|
BaseDataSourceClient |
BE#819683 |
Indicates no connection in place yet in the pool and therefore a new connection is established to the given destination database. |
BE#819683 Creating new connection for data source SnowflakeJDBC |
BE#819683 Creating new connection for data source SnowflakeJDBC |
BE#777482 Warehouse value is not valid
Could not connect to destination Snowflake. Connector response: Connection parameter 'warehouse' is not specified or cannot be used.
BE#945051 SQL error.\nSnowflake SQL: SQL compilation error:\nRole <configured role> does not exist or not
BE#918087 Logger: (BUILD_FAILED) Destination database authentication failed. Make sure the connection credentials are valid, and the user has sufficient permissions.\nError details: Could not connect to destination Snowflake.\nConnector response: Failed to connect to data source - error from Snowflake.\nSnowflake SQL: Incorrect username or password was
Destination database authentication failed. Make sure the connection credentials are valid, and the user has sufficient permissions. Error details: Could not connect to destination Snowflake. Connector response: Failed to connect to data source - error from Snowflake. Snowflake SQL: Incorrect username or password was specified. |
Warehouse connection string is invalid or has not been set in the connection setup.
Invalid role configured in the destination database connection.
Invalid username or password set up in the destination connection setup.
Solution: Update the connection string in the connection settings, and make sure the string is correct or that destination database connection has been set up.
|
PluginsExtensionsFactoryImpl |
BE#562125 |
n/a |
BE#562125 Extension class com.sisense.connectors.clients.impl.plugins.DefaultConnectionExtension for connector ID: Snowflake/RedshiftJDBC of type: CONNECTION on scope: BTD retrieved from the factory |
BE#562125 Extension class com.sisense.connectors.clients.impl.plugins.DefaultConnectionExtension for connector ID: Snowflake/RedshiftJDBC of type: CONNECTION on scope: BTD retrieved from the factory |
|
|
SnowflakeDataSourceClient |
BE#279124 |
Indicates the warehouse configured that will be used in Snowflake. |
BE#279124 Chosen Warehouse name: <warehouse name configured> |
BE#279124 Chosen Warehouse name: BE |
|
|
BaseDataSourceClient |
BE#395627 |
Indicates a successful connection to the destination database. |
BE#395627 Connection to data source SnowflakeJDBC established |
BE#395627 Connection to data source SnowflakeJDBC established |
BE#611992 Failed to connect to data source SnowflakeJDBC with the following error: <connection error> |
|
BaseDataSourceClient |
BE#177047 |
The configured driver in the connector settings in "Service Configuration >> SnowflakeJDBC". |
BE#177047 Driver Version is: <driver version useD> |
BE#177047 Driver Version is: 3.13.14 |
|
|
BaseDataSourceClient |
BE#334822 |
Used for connecting to datasource in the process of retrieving data from base tables. |
BE#334822 Calling JDBC function to set statement property: fetchSize the value: 200 |
BE#334822 Calling JDBC function to set statement property: fetchSize the value: 200 |
|
|
BaseDataSourceClient |
BE#692718 |
Indicates inability to use an existing connection to run the given command against the database. |
BE#692718 Not reusing connection due to query execution error or cancellation |
BE#692718 Not reusing connection due to query execution error or cancellation |
BE#672530 Failed to close connection |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Create Database] result status: COMPLETED |
BE#029473 Task [Create Database] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Create Database] completed. Duration: <duration> |
BE#960343 Task [Create Database] completed. Duration: 00:00:02.239 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
BE#125123 Spawned task [Create Schema], priority [0] |
BE#125123 Spawned task [Create Schema], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts task indicating that the schema creation is about to begin. |
BE#539145 Starting task [Create Schema], priority [0] under group <BuildID> |
BE#539145 Starting task [Create Schema], priority [0] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
SnowflakeSchemaHandlerV2 |
BE#232953 |
Creates the schema for the given cube. The name is based on what is configured in the destination database setting for the given cube, or, if not configured, will be auto-generated.
The schema is created by sending a SQL statement that creates the given schema.
Note that the schema name initially as indicated here will be based on the naming convention of the farm. When the build is completed, the schema name will be renamed to the schema name configured based on the cube title + deployment ID if not specified by the user. |
BE#232953 Creating Snowflake schema '<schema name>' |
BE#232953 Creating Snowflake schema 'MySQLtoSnowflake2_2022_05_24_11_49_59_512' |
BE#301998 Failed to create Snowflake schema: �<schema name>' |
If SQL execution returns an error number 2002, the schema already exists. |
RedshiftSchemaHandlerV2 |
BE#655223 |
Creates a new schema in Redshift. |
BE#655223 Creating Redshift schema <schema name> |
BE#655223 Creating Redshift schema 'MySQLToRedshift_2022_07_06_08_56_58_092' |
|
|
RedshiftSchemaHandlerV2 |
BE#979549 |
Creates the schema for Redshift. |
BE#979549 Creating Redshift schema '<schema name>' |
BE#979549 Creating Redshift schema 'mysqltoredshift_2022_07_06_08_56_58_092' |
BE#434689 Failed to create Redshift schema: <schema name> <sql exception> |
|
BaseDataSourceClient |
BE#675750 |
Indicates to the connection pool that the connection is not utilized at this point. |
BE#675750 Return connection to pool - conn=net.Snowflake.client.jdbc.Snowflake/RedshiftConnectionV1@507e1c77 |
BE#675750 Return connection to pool -conn=net.Snowflake.client.jdbc.Snowflake/RedshiftConnectionV1@507e1c77 |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Create Schema] result status: COMPLETED |
BE#029473 Task [Create Schema] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#96034 |
Indicates task execution duration. |
BE#960343 Task [Create Schema] completed. Duration: <duration> |
BE#960343 Task [Create Schema] completed. Duration: 00:00:01.480 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [COLUMN_RENAMER], priority [0] |
BE#125123 Spawned task [COLUMN_RENAMER], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts a task that will perform the column changes when a Schema Change build is performed. |
BE#539145 Starting task [COLUMN_RENAMER] under group <BuildID> |
BE#539145 Starting task [COLUMN_RENAMER] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [COLUMN_RENAMER] result status: COMPLETED] |
BE#029473 Task [COLUMN_RENAMER] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#96034 |
Task duration. |
BE#960343 Task [COLUMN_RENAMER] completed. Duration: <duration> |
BE#960343 Task [COLUMN_RENAMER] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [DIM_TABLES_CREATOR], priority [0] |
BE#125123 Spawned task [DIM_TABLES_CREATOR], priority [0] |
|
|
AbstractTask |
BE#539145 |
Creates the dimension tables for the cube, given that dimension tables are configured to be created. |
BE#539145 Starting task [DIM_TABLES_CREATOR] under group <BuildID> |
BE#539145 Starting task [DIM_TABLES_CREATOR] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [DIM_TABLES_CREATOR] result status: COMPLETED] |
BE#029473 Task [DIM_TABLES_CREATOR] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [DIM_TABLES_CREATOR] completed. Duration: <duration> |
BE#960343 Task [DIM_TABLES_CREATOR] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [ELEMENTS_DESTRUCTOR], priority [0] |
BE#125123 Spawned task [ELEMENTS_DESTRUCTOR], priority [0] |
|
|
AbstractTask |
BE#539145 |
Start the task that drops elements (e.g., tables) when running a Schema Change build. |
BE#539145 Starting task [ELEMENTS_DESTRUCTOR] under group <BuildID> |
BE#539145 Starting task [ELEMENTS_DESTRUCTOR] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
SnowflakeSchemaHandlerV2 |
BE#001013 |
Indicates a column being dropped from a schema. |
BE#001013 Dropping Snowflake columns from table '<table name>' |
BE#001013 Dropping Snowflake columns from table 'Employees' |
BE#906028 Failed to drop Snowflake columns from table: <table name> <exception> |
|
SnowflakeSchemaHandlerV2 |
BE#038574 |
The SQL statement is sent to the destination database in order to drop the column. |
BE#038574 ALTER TABLE "<schema name>"."<table name>" drop column "<column being dropped>" |
BE#038574 ALTER TABLE "MySQLTest_2022_06_22_14_22_46_212"."Employees" drop column "Group Assigned" |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [ELEMENTS_DESTRUCTOR] result status: COMPLETED] |
BE#029473 Task [ELEMENTS_DESTRUCTOR] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [ELEMENTS_DESTRUCTOR] completed. Duration: <duration> |
BE#960343 Task [ELEMENTS_DESTRUCTOR] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [COLUMN_RENAMER], priority [0] |
BE#125123 Spawned task [COLUMN_RENAMER], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts a task that will perform the change of a table name for a Schema Change build. |
BE#539145 Starting task [COLUMN_RENAMER] under group <BuildID> |
BE#539145 Starting task [COLUMN_RENAMER] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#546848 |
Indicates the column being renamed. |
BE#546848 Task [Rename Table Columns\nEmployees] execution... |
BE#546848 Task [Rename Table Columns\nEmployees] execution... |
|
|
SnowflakeTableHandlerV2 |
BE#593035 |
Sends a SQL statement to the destination database to rename the column. |
BE#593035 Renaming Snowflake columns from table '<table name>' |
BE#593035 Renaming Snowflake columns from table 'Employees' |
BE#876830 Failed to rename columns from table: <table name> <sql exception> |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [COLUMN_RENAMER] result status: COMPLETED] |
BE#029473 Task [COLUMN_RENAMER] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [COLUMN_RENAMER] completed. Duration: <duration> |
BE#960343 Task [COLUMN_RENAMER] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [TABLE_RENAMER], priority [0] |
BE#125123 Spawned task [TABLE_RENAMER], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts a task that will perform the change of a table name for a Schema Change build. |
BE#539145 Starting task [TABLE_RENAMER] under group <BuildID> |
BE#539145 Starting task [TABLE_RENAMER] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [TABLE_RENAMER] result status: COMPLETED] |
BE#029473 Task [TABLE_RENAMER] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [TABLE_RENAMER] completed. Duration: <duration> |
BE#960343 Task [TABLE_RENAMER] completed. Duration: 00:00:00.716 |
|
|
BuildMessageListenerService |
BE#353798 |
Sends a notification about tables being renamed. |
BE#353798 Logger: (RENAME_TABLE_START) Renaming |
BE#353798 Logger: (RENAME_TABLE_START) Renaming |
|
|
TasksCoordinatorImpl |
BE#125123 |
|
BE#125123 Spawned task [Rename Table\n<table name being change>], priority [0] |
BE#125123 Spawned task [Rename Table\nEmployees], priority [0] |
|
|
SnowflakeTableHandlerV2 |
BE#477803 |
|
BE#477803 Rename Snowflake table from '<current name>' to '<new name>' |
BE#477803 Rename Snowflake table from 'Employees' to 'EmployeesList' |
BE#283892 Failed to rename Snowflake table: <table name being changed>, <sql exception> |
|
AbstractTask |
BE#029473 |
|
BE#029473 Task [Rename Table\nEmployees2] result status: COMPLETED |
|
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [INDEXING_CHANGES], priority [0] |
BE#125123 Spawned task [INDEXING_CHANGES], priority [0] |
|
|
AbstractTask |
BE#539145 |
Performs changes to column indexing based on the cube data model. |
BE#539145 Starting task [INDEXING_CHANGES] under group <BuildID> |
BE#539145 Starting task [INDEXING_CHANGES] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
SnowflakeTableHandlerV2 |
BE#619317 |
Creates an index for all columns that are set to be indexed. |
BE#619317 Creating Snowflake indexed IDs columns for table '<table name>' |
BE#619317 Creating Snowflake indexed IDs columns for table 'Employees' |
BE#605380 Failed to create snowflake indexed IDs columns in '<table name>' <exception> |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [INDEXING_CHANGES] result status: COMPLETED] |
BE#029473 Task [INDEXING_CHANGES] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task execution duration. |
BE#960343 Task [INDEXING_CHANGES] completed. Duration: <duration> |
BE#960343 Task [INDEXING_CHANGES] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [DIM_TABLES_DESTRUCTOR], priority [0] |
BE#125123 Spawned task [DIM_TABLES_DESTRUCTOR], priority [0] |
|
|
AbstractTask |
BE#539145 |
Deletes dimension tables when they are no longer needed. |
BE#539145 Starting task [DIM_TABLES_DESTRUCTOR] under group <BuildID> |
BE#539145 Starting task [DIM_TABLES_DESTRUCTOR] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [DIM_TABLES_DESTRUCTOR] result status: COMPLETED] |
BE#029473 Task [DIM_TABLES_DESTRUCTOR] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [DIM_TABLES_DESTRUCTOR] completed. Duration: <duration> |
BE#960343 Task [DIM_TABLES_DESTRUCTOR] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [Initializing end message], priority [0] |
BE#125123 Spawned task [Initializing end message], priority [0] |
|
|
AbstractTask |
BE#539145 |
Sends a notification that the initialization stage has been completed. |
BE#539145 Starting task [Initializing end message] under group <BuildID> |
BE#539145 Starting task [Initializing end message] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Initializing end message] result status: COMPLETED] |
BE#029473 Task [Initializing end message] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [SCHEMA] completed. Duration: <duration> |
BE#960343 Task [SCHEMA] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [SCHEMA], priority [0] |
BE#125123 Spawned task [SCHEMA], priority [0] |
|
|
AbstractTask |
BE#539145 |
Checkpoint task. |
BE#539145 Starting task [SCHEMA] under group <BuildID> |
BE#539145 Starting task [SCHEMA] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [SCHEMA] result status: COMPLETED] |
BE#029473 Task [SCHEMA] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [SCHEMA] completed. Duration: <duration> |
BE#960343 Task [SCHEMA] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [BASE], priority [0] |
BE#125123 Spawned task [BASE], priority [0] |
|
|
AbstractTask |
BE#539145 |
Checkpoint task. |
BE#539145 Starting task [BASE] under group <BuildID> |
BE#539145 Starting task [BASE] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [BASE] result status: COMPLETED] |
BE#029473 Task [BASE] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [BASE] completed. Duration: <duration> |
BE#960343 Task [BASE] completed. Duration: 00:00:00.716 |
|
|
Create all the tables in the given schema |
||||||
TasksCoordinatorImp l |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Create Table\n<Name of Table>], priority [0] |
BE#125123 Spawned task [Create Table\nEmployees], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts the task of creating the given table. This task will run when this is a full build. |
BE#539145 Starting task [Create Table\n<Name of Table>] under group <BuildID> |
BE#539145 Starting task [Create Table\nEmployees] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Create Table\n<Name of Table>] result status: COMPLETED] |
BE#029473 Task [[Create Table\nEmployees] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task execution duration. |
BE#960343 Task [Create Table\n<Name of Table> ] completed. Duration: <duration> |
BE#960343 Task [Create Table\nEmployees] completed. Duration: 00:00:00.716 |
|
|
Snowflake/RedshiftTableHandlerV2 |
BE#587360 |
Indicates the table name that is about to be created in the given schema. |
BE#587360 Creating <destination database> table '<Table Name>' |
BE#587360 Creating Snowflake table 'Employees' |
BE#345853 Failed to create <destination database> table: <table name> <exception returned from database> |
Failed to create table due to error indicated (e.g., connection issue, permission issue, etc.). |
Snowflake/RedshiftTableHandlerV2 |
BE#498770 |
Details the table schema which is being created. |
BE#498770 CREATE TABLE "<schema name>"."<table name>" (<schema setup for all columns including column name, data type>); |
BE#498770 CREATE TABLE "MySQLtoSnowflake2_2022_05_24_11_49_59_512"."Employees" ("ID" INT, "First Name" VARCHAR(65535), "Last Name" VARCHAR(65535), "AccuIndicator" INT, "Group Assigned" VARCHAR(100), "EmpLocID" INT); |
|
|
TasksCoordinatorImp l |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Create Parallel Stage Tables\n<Name of Table>], priority [0] |
BE#125123 Spawned task [Create Parallel Stage Tables\nEmployees], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts the task of creating the given table. This task will run for a build behavior that requires side by side creation of tables, such as in an incremental build. |
BE#539145 Starting task [Create Parallel Stage Tables\n<Name of Table>] under group <BuildID> |
BE#539145 Starting task [Create Parallel Stage Tables\nEmployees] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Create Parallel Stage Tables\n<Name of Table>] result status: COMPLETED] |
BE#029473 Task [Create Parallel Stage Tables\nEmployees] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task execution duration. |
BE#960343 Task [Create Parallel Stage Tables\n<Name of Table> ] completed. Duration: <duration> |
BE#960343 Task [Create Parallel Stage Tables\nEmployees] completed. Duration: 00:00:00.716 |
|
|
SnowflakeTableHandlerV2 |
BE#548094 |
Provides a temporary name for the table that will have the new data inserted into it. This will be merged with the existing base table at the end of the build, and the temporary table will be dropped. |
BE#548094 Creating <destination database> table '<table name>' |
BE#548094 Creating Snowflake table 'Locations_1654598042866_1' |
BE#345853 Failed to create Snowflake table: <reason returned for failure> |
|
SnowflakeTableHandlerV2 |
BE#498770 |
Indicates the scheme details for the given table being created. |
BE#498770 CREATE TABLE "<schema name>"."<table name>" (<schema setup for all columns including column name, data type>); |
BE#498770 CREATE TABLE "MySQLtoSnowFlake2_2022_06_07_10_34_02_855"."Locations_1654598042866_1" ("Location Name" VARCHAR(100), "Active" INT, "LocID" INT); |
|
|
TasksCoordinatorImp l |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Extract Max Value From\n<Name of Table>], priority [0] |
BE#125123 Spawned task [Extract Max Value From\n Employees], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts the task of determining the max value in the column that is indicated as accumulative. |
BE#539145 Starting task [Extract Max Value From\n<Name of Table>] under group <BuildID> |
BE#539145 Starting task [Extract Max Value From\nEmployees] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Extract Max Value From\n<Name of Table>] result status: COMPLETED] |
BE#029473 Task [Extract Max Value From\nEmployees] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Extract Max Value From\n<Name of Table> ] completed. Duration: <duration> |
BE#960343 Task [Extract Max Value From\nEmployees] completed. Duration: 00:00:00.716 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
BE#125123 Spawned task [Drop Table\n<custom table name>], priority [1096] |
BE#125123 Spawned task [Drop Table\nCustomTable], priority [1096] |
|
|
AbstractTask |
BE#539145 |
Starts the task of dropping custom tables. |
BE#539145 Starting task [Drop Table\n<custom table name>]under group <build ID> |
BE#539145 Starting task [Drop Table\nCustomTable] under group 0215c198-3a65-46cc-9be3-323269b5a4fc |
|
|
SnowflakeTableHandlerV2 |
BE#216316 |
Drops any custom tables when the table is recreated from scratch. |
BE#216316 Dropping < destination database>table '<Custom Table Name>' |
BE#216316 Dropping Snowflake table 'CustomTable' |
BE#096929 Failed to drop Snowflake table: <reason for failure> |
|
SnowflakeTableHandlerV2 |
BE#755172 |
Indicates the drop request has completed. |
BE#755172 Dropping < destination database> table '<Custom Table Name>' finished |
BE#755172 Dropping Snowflake table 'CustomTable' finished |
|
|
AbstractTask |
BE#029473 |
Task is completed. |
BE#029473 Task [Drop Table \n<custom table name>] result status: COMPLETED |
BE#029473 Task [Drop Table\nCustomTable] result status: COMPLETED |
|
|
TasksCoordinatorImp l |
BE#960343 |
Task duration. |
BE#960343 Task [Drop Table \n <custom table name>] completed. Duration: 00:00:01.488 |
BE#960343 Task [Drop Table \nCustomTable] completed. Duration: 00:00:01.488 |
|
|
TasksCoordinatorImp l |
BE#125123 |
Instantiates a task. |
BE#125123 Spawned task [CUSTOM], priority [0] |
BE#125123 Spawned task [CUSTOM], priority [0] |
|
|
AbstractTask |
BE#539145 |
Checkpoint task. |
BE#539145 Starting task [CUSTOM] under group <BuildID> |
BE#539145 Starting task [CUSTOM] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [CUSTOM] result status: COMPLETED] |
BE#029473 Task [CUSTOM] result status: COMPLETED] |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [CUSTOM ] completed. Duration: <duration> |
BE#960343 Task [CUSTOM] completed. Duration: 00:00:00.716 |
|
|
BUILD - INITIALIZATION - END |
||||||
BUILD - BASE TABLES - START |
||||||
BuildMessageListenerService |
BE#353798 |
Sends a notification that base table building has begun. |
BE#353798 Logger: (BASE_TABLE_START) Building |
BE#353798 Logger: (BASE_TABLE_START) Building |
|
|
QueryBuilderHandler |
BE#316300/BE#471928 /BE#082699 |
Indicates which translator was used for the build. |
BE#316300 Using translator query builder
OR
BE#471928 Using build query builder
OR
BE#082699 Provider is EC2EC Using build query builder |
BE#316300 Using translator query builder
|
|
|
TranslatorQueryBuilder |
BE#109101/BE#184212 |
Indicates the call to the given translator. |
BE#109101 Generating the query using Translator
OR
BE#184212 Generating the query using Build |
BE#109101 Generating the query using Translator |
BE#497507 Error in creating query: <exception returned> |
|
TranslatorQueryBuilder |
BE#730414 |
Calls to the translator to generate the SQL statement. |
BE#730414 Calling to Translator generate |
BE#730414 Calling to Translator generate |
|
|
BaseTableOptimizeBuilderTaskV2 |
BE#884488 |
When the source data provider and destination database are the same, and the given build optimization is set to On, the "Short Circuit" process will be activated, in which data will be fetched from the source and inserted directly into the destination database.
In this case there will be no data files generated in S3 storage. |
BE#884488 Running optimize on table '<table name>'' |
BE#884488 Running optimize on table 'Employees' |
|
|
SqlOperationsRunner |
BE#196771 |
|
BE#196771 Running query operations |
BE#196771 Running query operations |
|
|
SqlOperationsRunner |
BE#930355 |
The SQL that selects that data from the source table and inserts it into the cube table. |
BE#930355 Running APPLY_OPERATIONS: '<sql statement>' |
BE#930355 Running APPLY_OPERATIONS: 'SELECT "ID", "First Name New" AS "First_Name_New", "Last Name" AS "Last_Name", "AccuIndicator", "Group Assigned" AS "Group_Assigned", "EmpLocID", "Custom Column" AS "Custom_Column" FROM "BE"."MySQLToSnowFlake100"."Employees"']
|
|
|
BaseTableExternalBuilderTaskV2 |
BE#999398 |
Indicates that the data from the source table is inserted into the base table in the destination schema. |
BE#999398 Merging SOURCE to BASE table '<table name>'' |
BE#999398 Merging SOURCE to BASE table 'Employees' |
|
|
BaseTableExternalBuilderTaskV2 |
BE#805288 |
Builds the base table. |
BE#805288 Build table '<table name>' in session '2' |
BE#805288 Build table 'employees' in session '2' |
|
|
InternalRequestProxy
Exception for File insert to Database for Snowflake:
SnowflakeUploader
Exception of upload to S3:
AmazonS3FilesStorageUploader |
BE#166586 |
Call to the build connector which is done per table being built. |
BE#166586 Sent alive operation request ID=<request ID> (build), waiting... |
BE#166586 Sent alive operation request ID=db6ccd97-5558-4c1f-8e55-2bb846342622 (build), waiting... |
BE#657419 Failed to delete file '<name of data file>' for session '{<S3 path>}': {<session ID>}
BE#861463 Could not load file to S3 bucket <exception returned>
BE#828928 Failed to load file to S3 bucket: <bucket name> <exception>
BE#657419 Failed to delete file '<data file name>' for session '<file writer #>': <exception>
BE#274993/BE# #204828 Could not copy the data from S3 to a <destination database> table, error: {<message>}, cause {<sql exception>}
BE#912028/BE#BE#918307 Failed to upload table: <table name> to schema: <schema name> <sql exception> |
This error will appear if the data file upload from the farm to S3 has failed. The returned exception from the AWS S3 client will be written if an error is returned.
This error could occur in the case of a failure to delete the data file (csv or parquet for example) from Sisense storage.
This failure will be raised when SQL execution fails in inserting data from data files in S3. |
SnowflakeDataSourceClient |
BE#279124 |
Indicates the warehouse configured that will be used in Snowflake/Redshift. |
BE#279124 Chosen Warehouse name: <warehouse name> |
BE#279124 Chosen Warehouse name: BE |
|
|
BaseDataSourceClient |
BE#395627 |
Indicates a successful connection to the destination database. |
BE#395627 Connection to data source <destination database> JDBC established |
BE#395627 Connection to data source Snowflake JDBC established |
|
|
BaseDataSourceClient |
BE#177047 |
The configured driver in the connector settings in "Service Configuration >> Snowflake/RedshiftJDBC". |
BE#177047 Driver Version is: 3.13.14 |
BE#177047 Driver Version is: 3.13.14 |
|
|
TasksCoordinatorImp l |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Merge Parallel Stage Tables for\n<base table name>], priority [0] |
BE#125123 Spawned task [Merge Parallel Stage Tables for\nEmployees], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts the task that will merge the temporary table data that was built into the cube existing base table, for build behavior such as accumulative. |
BE#539145 Starting task [Merge Parallel Stage Tables for\n<base table name>] under group <build ID> |
BE#539145 Starting task [Merge Parallel Stage Tables for\nEmployees] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
SnowflakeTableHandlerV2 |
BE#999398 |
Indicates the merge being performed for the given base table. |
BE#999398 Merging PARALLEL to BASE table '<base table name>'' |
BE#999398 Merging PARALLEL to BASE table 'Employees' |
|
|
SnowflakeTableHandlerV2 |
BE#556049 |
Indicates the SQL statement that will be executed.
After that task is completed, the temporary table is dropped. |
BE#556049 Running Snowflake merge into 'Employees': INSERT INTO "<database>"."<schema name>"."<base table name>" (<field list>) SELECT * FROM "<schema name> "."<temporary table>" |
BE#556049 Running Snowflake merge into 'Employees': INSERT INTO "BE"."MySQLtoSnowflake2_2022_05_24_11_49_59_512"."Employees" ("ID", "First Name", "Last Name", "AccuIndicator", "Group Assigned", "EmpLocID") SELECT * FROM "MySQLtoSnowflake/Redshift2_2022_05_24_11_49_59_512"."Employees_1653392999513_1" |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Merge Parallel Stage Tables for\nEmployees] result status: COMPLETED |
BE#029473 Task [Merge Parallel Stage Tables for\nEmployees] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Merge Parallel Stage Tables for\nEmployees] completed. Duration: 00:00:00.412 |
BE#960343 Task [Merge Parallel Stage Tables for\nEmployees] completed. Duration: 00:00:00.412 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
BE#125123 Spawned task [Drop Parallel Stage Tables for\n<table name>], priority [0] |
BE#125123 Spawned task [Drop Parallel Stage Tables for\nEmployees], priority [0] |
|
|
AbstractTask |
BE#539145 |
Indicates the dropping of tables that were created in parallel and temporarily to hold new data that is merged as part of a build behavior process such as accumulate. |
BE#539145 Starting task [Drop Parallel Stage Tables for\n<table name>] under group <build ID> |
BE#539145 Starting task [Drop Parallel Stage Tables for\nEmployees] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
SnowflakeTableHandlerV2 |
BE#216316 |
Drops the parallel table that was temporarily used to build the data into, that was merged into the main base table. |
BE#216316 Dropping Snowflake table '<temporary parallel table>' |
BE#216316 Dropping Snowflake table 'Employees_1655203628919_1' |
BE#096929 Failed to drop Snowflake table: <table name> <sql exception string> |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Drop Parallel Stage Tables for\nEmployees] result status: COMPLETED |
BE#029473 Task [Drop Parallel Stage Tables for\nEmployees] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Drop Parallel Stage Tables for\nEmployees] completed. Duration: <duration> |
BE#960343 Task [Drop Parallel Stage Tables for\nEmployees] completed. Duration: 00:00:00.221 |
|
|
BuildMessageListenerService |
BE#353798 |
Sends a notification that indicates that the base table stage is completed. |
BE#353798 Logger: (BASE_TABLE_END) Successfully built |
BE#353798 Logger: (BASE_TABLE_END) Successfully built |
|
|
BASE TABLES = END |
||||||
CUSTOM ELEMENTS = START |
||||||
Custom columns building |
||||||
BuildMessageListenerService |
BE#353798 |
Sends a notification that the custom elements stage of the build has begun. |
BE#353798 Logger: (CUSTOM_COLUMN_START) Building |
BE#353798 Logger: (CUSTOM_COLUMN_START) Building |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates the task. |
BE#125123 Spawned task [Create Column\n<table name>.<custom column name>], priority [0 |
BE#125123 Spawned task [Create Column\n<mployees.custom column], priority [0 |
|
|
AbstractTask |
BE#539145 |
Starts the task of creating a custom column. |
BE#539145 Starting task [Create Column\nEmployees.Custom Column] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
BE#539145 Starting task [Create Column\nEmployees.Custom Column] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
SnowflakeTableHandlerV2 |
BE#590080 |
Builds the custom columns for the given table. |
BE#590080 Building <destination database> custom columns from table '<table name>' |
BE#590080 Building Snowflake custom columns from table 'Employees' |
BE#354173 Failed to update <destination database> custom column: '<custom column name>', custom query: <sql statement> |
This could be the result of column name changes in the base tables that have not been changed in the custom column query setting in the model. |
SnowflakeTableHandlerV2 |
BE#980568 |
Runs the SQL statement that inserts/updates the custom column value that was modeled for the cube. |
BE#980568 Creating Snowflake custom column 'Custom Column |
BE#980568 Creating Snowflake custom column 'Custom Column' |
BE#074680 Failed to create Snowflake custom column: '<custom column name>', custom query: '<sql statement that was performed>', message: '<returned exception from the build destination>'
BE#681674 Could not create Snowflake custom column '<custom column name>''<custom column name> in table <base table name> + '<returned exception from the build destination>' |
|
SnowflakeTableHandlerV2 |
BE#556508 |
Sent a SQL statement that will alter the built base table and add the new column, indicating name and type. |
BE#556508 ALTER TABLE "<temporary cube schema name>"."<base table name>" ADD COLUMN "<custom column name>" <column type>; |
BE#556508 ALTER TABLE "MySQLtoSnowflake2_2022_05_24_11_49_59_512"."Employees" ADD COLUMN "Custom Column" TIMESTAMP; |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Create Column\n<table name>.<custom column name>] result status: COMPLETED |
BE#029473 Create Column\nEmployees.Custom Column] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Create Column\n<table name>.<custom column name>] completed. Duration: <duration> |
BE#960343 Create Column\nEmployees.Custom Column] completed. Duration: 00:00:00.316 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Build Column\nEmployees.Custom Column], priority [0] |
BE#125123 Spawned task [Build Column\nEmployees.Custom Column], priority [0] |
|
|
AbstractTask |
BE#539145 |
Starts building the given custom column. |
BE#539145 Starting task [Build Column\nEmployees.Custom Column] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
BE#539145 Starting task [Build Column\nEmployees.Custom Column] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
SnowflakeTableHandlerV2 |
BE#590080 |
Performs the SQL statement which will insert/update the custom column data based on the cube modeling for the given custom column. |
BE#590080 Building <destination database>custom columns from table 'Employees' |
BE#590080 Building Snowflake custom columns from table 'Employees' |
BE#100399
BE#354173 Failed to update Snowflake custom column: '<custom column name>', custom query: '<sql statement>', message: '<sql exception>'
BE#059133 Could not build Snowflake custom column |
SQL exception occured. |
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Build Column\nEmployees.Custom Column] result status: COMPLETED |
BE#029473 Task [Build Column\nEmployees.Custom Column] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Build Column\n<base table name>.<custom column name>] completed. Duration: 00:00:00.753 |
BE#960343 Task [Build Column\nEmployees.Custom Column] completed. Duration: 00:00:00.753 |
|
|
BuildMessageListenerService |
BE#353798 |
Sends a notification that custom columns building has been completed. |
BE#353798 Logger: (CUSTOM_COLUMN_END) Successfully built |
BE#353798 Logger: (CUSTOM_COLUMN_END) Successfully built |
|
|
Custom table building |
||||||
BuildMessageListenerService |
BE#353798 |
Indicates that custom table tasks are about to start. |
BE#353798 Logger: (CUSTOM_TABLE_START) Building |
BE#353798 Logger: (CUSTOM_TABLE_START) Building |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Build Table\n<custom table name> |
BE#125123 Spawned task [Build Table\nCustomTable |
|
|
AbstractTask |
BE#539145 |
Starts the task of building the given custom table. |
BE#539145 Starting task [Build Table\nCustomTable] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
BE#539145 Starting task [Build Table\nCustomTable] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
SnowflakeTableHandlerV2
|
BE#671591 |
Builds the given custom table in the destination database.
The query will run the given query that is modeled for the custom table. |
BE#671591 Creating <build to destination database> custom table '<customer table name>' |
BE#671591 Creating Snowflake custom table 'CustomTable' |
BE#988162 Custom table '<custom table name>' creation failed with SQL: [<sql details>] {<exception details>}
BE#170713 Failed to create Snowflake custom table: <custom table name>
BE#790110 Please Refresh Schema Of Base & Custom Tables: <custom table name>. Table contains: <#> columns <> Custom Table Expression contains: <#> columns. |
Error occurred in creating the table.
Potential issue due to lack of connection to database or inability to create tables due to permission issues.
There is a discrepancy between the number of columns that exist in the query from base table data and what the customer table is set for. |
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Build Table\n<custom table name>] result status: COMPLETED |
BE#029473 Task [Build Table\nCustomTable] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Build Table\n<custom table name>] completed. Duration: <duration> |
BE#960343 Task [Build Table\nCustomTable] completed. Duration: 00:00:01.193 |
|
|
BuildMessageListenerService |
BE#353798 |
Sends a notification that custom table build has completed. |
BE#353798 Logger: (CUSTOM_TABLE_END) Successfully built |
BE#353798 Logger: (CUSTOM_TABLE_END) Successfully built |
|
|
BUILD - CUSTOM ELEMENTS END (build.log) |
||||||
BUILD - FINALIZE START (build.log) |
||||||
BuildMessageListenerService |
BE#353798 |
Sends a notification that the finalization phase of the build has begun. |
BE#353798 Logger: (FINALIZING_START) |
BE#353798 Logger: (FINALIZING_START) |
|
|
TasksCoordinatorImpl |
BE#125123 |
Starts the task. |
BE#125123 Spawned task [FINALIZING] |
BE#125123 Spawned task [FINALIZING] |
|
|
AbstractTask |
BE#539145 |
This task sends a notification to the GUI that the build is being finalized. |
BE#539145 Starting task [FINALIZING] under group <BuildID> |
BE#539145 Starting task [FINALIZING] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Indicates the task completed successfully. |
BE#029473 Task [FINALIZING] result status: COMPLETED |
BE#029473 Task [FINALIZING] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Indicates how long it took the task to run. |
BE#960343 Task [FINALIZING] completed. Duration: <duration> |
BE#960343 Task [FINALIZING] completed. Duration: 00:00:00.003 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Starts the task. |
BE#125123 Spawned task [FINALIZING message] |
BE#125123 Spawned task [FINALIZING message] |
|
|
AbstractTask |
BE#539145 |
Sends a notification to the GUI that the build is being finalized. |
BE#539145 Starting task [FINALIZING message] under group <BuildID> |
BE#539145 Starting task [FINALIZING message] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Indicates the task completed successfully. |
BE#029473 Task [FINALIZING message] result status: COMPLETED |
BE#029473 Task [FINALIZING message] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Indicates how long it took the task to run. |
BE#960343 Task [FINALIZING message] completed. Duration: <duration> |
BE#960343 Task [FINALIZING message] completed. Duration: 00:00:00.003 |
|
|
TaskGroup |
BE#345155 |
Sets the work plan for the build into the finalizing stage. |
BE#345155 Group <build ID> workplan state set to Finalizing |
BE#345155 Group 1a8ec796-2205-4e7d-8012-fdcf904c9795 workplan state set to Finalizing |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Stopping cube], priority [0] |
BE#125123 Spawned task [Stopping cube], priority [0] |
|
|
|
|
Starts the task of stopping the BLD pod that was used during the build. |
BE#539145 Starting task [Stopping cube] under group <build ID> |
BE#539145 Starting task [Stopping cube] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
BuildMessageListenerService |
BE#353798 |
Sends a notification that the build is completed and that cube data is being associated with the cube. |
BE#353798 Logger: (COMPLETE_BUILD) Saving files and attaching cube |
BE#353798 Logger: (COMPLETE_BUILD) Saving files and attaching cube |
|
|
InternalRequestProxy |
BE#166586 |
Send a request to the management pod to finalize the build pod (in this case EC-BLD) and shut down the build pod as it is no longer needed. |
BE#166586 Sent async request ID=<RequestID> (stopCubeForBuild), waiting... |
BE#166586 Sent async request ID=6d10e195-0a43-4fea-b822-3c1cad9ac957 (stopCubeForBuild), waiting... |
BE#130359 service not found, serviceName: Management Service
BE#919403 Async request ID=<request ID> timeout
BE#150935 Timeout on Stop Cube for Build
|
If Zookeeper is down or management service is not found.
This will designate a timeout on the request to the management pod. Timeout duration is going to be based on the configuration in configuration manager in "Base configuration" with parameter: serviceCallTimeout.value.
Check management.log to further investigate what happened to this request.
In most cases, this designates that the management pod is taking a while to bring up a new pod for the build.
|
InternalRestController |
BE#541125 |
The confirmation received from the management pod request is being processed. |
BE#541125 got async response for ID <RequestID>
|
BE#541125 got async response for ID 6d10e195-0a43-4fea-b822-3c1cad9ac957
|
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Stopping cube] result status: COMPLETED |
BE#029473 Task [Stopping cube] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Stopping cube] completed. Duration: <duration> |
BE#960343 Task [Stopping cube] completed. Duration: 00:00:17.239 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Storing EcmModel], priority [10] |
BE#125123 Spawned task [Storing EcmModel], priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task of saving the cube model information into the farm for the cube in file "ElastiCube.json". |
BE#539145 Starting task [Storing EcmModel] under group <build ID> |
BE#539145 Starting task [Storing EcmModel] under group 6d10e195-0a43-4fea-b822-3c1cad9ac957 |
BE#449244 Failed to write <file name> <exception>
BE#785588 Failed to write <file name> Failed to store ECM model file |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Storing EcmModel] result status: COMPLETED |
BE#029473 Task [Storing EcmModel] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Storing EcmModel] completed. Duration: <duration> |
BE#960343 Task [Storing EcmModel] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Activate schema], priority [10] |
BE#125123 Spawned task [Activate schema], priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task of activating the given schema for the cube. |
BE#539145 Starting task [Activate schema] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
BE#539145 Starting task [Activate schema] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
SnowflakeSchemaHandlerV2 |
BE#316747 |
Makes the schema ready by renaming it to the schema that was selected (setup in the Build to Destination configuration for the given cube) or to the automatically assigned schema name. |
BE#316747 Activating <build to destination database>schema '<temporary schema name>' with '<final schema name> |
BE#316747 Activating Snowflake schema 'MySQLtoSnowflake2_2022_05_24_11_49_59_512' with 'MySQLToSnowflake2' |
BE#137897 Failed to activate <build to destination> '<temporary schema name>' with '<final schema name>
|
|
SnowflakeSchemaHandlerV2 |
BE#377190 |
The SQL statement that is executed to rename the schema. |
BE#377190 ALTER SCHEMA IF EXISTS '<temporary schema name>' RENAME TO '<final schema name>' |
BE#377190 ALTER SCHEMA IF EXISTS 'MySQLtoSnowflake2_2022_05_24_11_49_59_51' RENAME TO "MySQLToSnowFlake2" |
|
|
SnowflakeSchemaHandlerV2 |
BE#526050 |
Swaps the schemas to make the new one the primary schema. |
BE#526050 Swapping <destination database> schema 'temporary schema name' with '<final schema name>' |
BE#526050 Swapping Snowflake schema 'MySQLtoSnowflake2_2022_05_24_11_49_59_51' with 'MySQLToSnowFlake2' |
BE#047053 Failed to swap <destination database> schema '<temporary schema name>' with '<final schema name>' |
If the swap fails, the build will be canceled. |
SnowflakeSchemaHandlerV2 |
BE#261826 |
Command sent to the destination database. |
BE#261826 ALTER SCHEMA IF EXISTS '<temporary schema name>' SWAP WITH '<final schema name>' |
BE#261826 ALTER SCHEMA IF EXISTS "MySQLtoSnowFlake2_2022_06_07_10_34_02_855" SWAP WITH "MySQLToSnowFlake100"; |
|
|
SnowflakeSchemaHandlerV2 |
BE#046650 |
Command sent to the destination database. |
BE#046650 ALTER SCHEMA IF EXISTS '<temporary schema name>' RENAME TO "<schema name>";
|
BE#046650 ALTER SCHEMA IF EXISTS 'MySQLtoSnowflake2_2022_05_24_11_49_59_51' RENAME TO "MySQLToSnowFlake2"
|
BE#824487 Failed to rename Snowflake schema '<temporary schema name>' to '<final schema name>'; |
This will occur when a schema already exists with this name, in order to prevent a schema from being accidentally overwritten. |
SnowflakeSchemaHandlerV2 |
BE#586579 |
Drops the old schema for the cube which is no longer needed. |
BE#586579 Dropping <build to destination> Schema '<schema name>' |
BE#586579 Dropping <build to destination> Schema 'MySQLToSnowflake' |
BE#151518 Failed to drop Snowflake schema: <schema name> |
Could not connect to the destination database. |
RedshiftSchemaHandlerV2 |
BE#872656 |
Swaps the schema name between the temporary name and selected name. |
BE#872656 Swapping Redshift schema '<temporary schema name>' with '<selected schema name' |
BE#872656 Swapping Redshift schema 'mysqltoredshift_2022_07_06_08_56_58_092' with 'mysqltoredshift' |
BE#907186 Swap failed, will attempt to activate. <exception string>
BE#103590 Failed to swap Redshift schema '<temporary schema name>' with '<schema name>' |
Swap attempt fails for the schemas which will lead to build failure. |
RedshiftSchemaHandlerV2 |
BE#500761 |
Performed when a build is performed on a cube that was built already but the schema name is changed. |
BE#500761 ALTER SCHEMA "<previous schema name>" RENAME TO "mysqltoredshift_2022_07_05_10_31_48_011" |
BE#500761 ALTER SCHEMA " mysqltoredshiftold" RENAME TO "mysqltoredshift_2022_07_05_10_31_48_011" |
|
|
RedshiftSchemaHandlerV2 |
BE#500761 |
Command sent to the destination database. |
BE#500761 ALTER SCHEMA "<previous schema name>" RENAME TO "<schema name>"; |
BE#500761 ALTER SCHEMA "mysqltoredshiftold" RENAME TO "mysqltoredshift_2022_07_05_10_31_48_011"; |
|
|
RedshiftSchemaHandlerV2 |
BE#892908 |
Command sent to the destination database. |
BE#892908 ALTER SCHEMA "mysqltoredshift_2022_07_06_08_56_58_092" RENAME TO "mysqltoredshift"; |
BE#892908 ALTER SCHEMA "mysqltoredshift_2022_07_06_08_56_58_092" RENAME TO "mysqltoredshift"; |
|
|
RedshiftSchemaHandlerV2 |
BE#897415 |
Drops the temporary schema name. |
BE#897415 Dropping Redshift Base Schema '<temporary schema name>' |
BE#897415 Dropping Redshift Base Schema 'mysqltoredshift_2022_07_05_10_31_48_011 |
BE#533536 Failed to drop Redshift schema: <schema name>
BE#917655 Failed to drop Redshift schema: <schema name> |
|
RedshiftSchemaHandlerV2 |
BE#286200 |
Command sent to the destination database. |
BE#286200 DROP SCHEMA IF EXISTS "<temporary schema name>" CASCADE; |
BE#286200 DROP SCHEMA IF EXISTS "mysqltoredshift_2022_07_05_10_31_48_011" CASCADE; |
|
|
RedshiftSchemaHandlerV2 |
BE#225211 |
|
BE#225211 Dropping Redshift Base Schema "<schema name>" |
BE#225211 Dropping Redshift Base Schema "<schema name>" |
BE#917655 Failed to drop Redshift schema: <schema name> |
|
RedshiftSchemaHandlerV2 |
BE#427064 |
|
BE#427064 |
BE#427064 |
|
|
RedshiftSchemaHandlerV2 |
BE#652564 |
Makes the schema ready by renaming it to the schema that was selected (setup in the Build to Destination configuration for the given cube) or to the automatically assigned schema name. |
BE#652564 Activating Redshift schema '<temporary schema name>' with '<assigned schema name>' |
BE#652564 Activating Redshift schema 'mysqltoredshift2_2022_07_06_11_46_15_558' with 'mysqltoredshift2_a7ff63e7c_ad54_4754_8c9a_1ab5fab34d04' |
BE#886270 Failed to activate Redshift schema'<temporary schema name>' with '<assigned schema name>' |
|
RedshiftSchemaHandlerV2 |
BE#373475 |
Command sent to the destination database. |
BE#373475 ALTER SCHEMA "<temporary schema name>" RENAME TO "<assigned schema name>"; |
BE#373475 ALTER SCHEMA "mysqltoredshift2_2022_07_06_11_46_15_558" RENAME TO "mysqltoredshift2_a7ff63e7c_ad54_4754_8c9a_1ab5fab34d04"; |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Activate schema] result status: COMPLETED |
BE#029473 Task [Activate schema] result status: COMPLETED |
BE#205785 Swap failed (<error returned>), will try to activate
BE#047053 Failed to swap '<temporary schema name>' with '<final schema name>'
|
|
TasksCoordinatorImpl
|
BE#960343 |
Task duration. |
BE#960343 Task [Activate schema] completed. Duration: <duration> |
BE#960343 Task [Activate schema] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Analytics upload], priority [10] |
BE#125123 Spawned task [Analytics upload], priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task of storing build analytical data into the analytic cube. |
BE#539145 Starting task [Analytics upload] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
BE#539145 Starting task [Analytics upload] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Analytics upload] result status: COMPLETED |
BE#029473 Task [Analytics upload] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Analytics upload] completed. Duration: 00:00:00.001 |
BE#960343 Task [Analytics upload] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Storing ElastiCubeInfo], priority [10] |
BE#125123 Spawned task [Storing ElastiCubeInfo], priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task of saving the cube model information into the farm for the cube in the "ElastiCubeinfo.json" file. |
BE#539145 Starting task [Storing ElastiCubeInfo] under group <build ID> |
BE#539145 Starting task [Storing ElastiCubeInfo] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
BE#108980 Failed to write <file name> <exception>
BE#143359 Failed to write <file name>
Failed to store cube info file |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Storing ElastiCubeInfo result status: COMPLETED |
BE#029473 Task [Storing ElastiCubeInfo result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Storing ElastiCubeInfo] completed. Duration: <duration> |
BE#960343 Task [Storing ElastiCubeInfo] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Storing PhysicalDbSchema], priority [10] |
BE#125123 Spawned task [Storing PhysicalDbSchema], priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task of saving the cube model information into the farm for the cube in the "ElastiCubePhysicalDBSchema.json" file. |
BE#539145 Starting task [Storing PhysicalDbSchema] under group <build ID> |
BE#539145 Starting task [Storing PhysicalDbSchema] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
BE#456740 Failed to write <file name> <exception>
BE#156327 Failed to write <file name>
Failed to store additional Physical DB Schema fille |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Storing PhysicalDbSchema] result status: COMPLETED |
BE#029473 Task [Storing PhysicalDbSchema] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Storing PhysicalDbSchema] completed. Duration: 00:00:00.001 |
BE#960343 Task [Storing PhysicalDbSchema] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Storing new CubeModels], priority [10] |
BE#125123 Spawned task [Storing new CubeModels], priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task of storing cube models into MongoDB. |
BE#539145 Starting task [Storing new CubeModels] under group <build ID> |
BE#539145 Starting task [Storing new CubeModels] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Storing new CubeModels] result status: COMPLETED |
BE#029473 Task [Storing new CubeModels] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Storing new CubeModels] completed. Duration: <duration> |
BE#960343 Task [Storing new CubeModels] completed. Duration: 00:00:00.001 |
|
|
BuildService |
BE#869430 |
Creates a record for the cube in MongoDB. |
BE#869430 Creating Models. Data Source Title: MySQLtoSnowflake, ECM Model OID: <mongo db OID for model> |
BE#869430 Creating Models. Data Source Title: MySQLtoSnowflake, ECM Model OID: f5033f58-f23e-4d83-be13-61180c3db4e9 |
BE#063661 exception was received while saving the cube model <exception>
Failed to create model |
|
BuildService |
BE#656221 |
Sends logical data into MongoDB for the given cube model with the OID. |
BE#656221 Creating Logical Schema. Data Source Title: <Cube title>, ECM Model OID: <MongoDB OID> |
BE#656221 Creating Logical Schema. Data Source Title: MySQLtoSnowflake2, ECM Model OID: f5033f58-f23e-4d83-be13-61180c3db4e9 |
|
|
BuildService |
BE#578789 |
Stores the cube model into MongoDB for the given cube model with the OID. |
BE#578789 Storing Models. Data Source Title: <Cube title>, ECM model OID: <MongoDB OID> |
BE#578789 Storing Models. Data Source Title: MySQLtoSnowflake2, ECM model OID: f5033f58-f23e-4d83-be13-61180c3db4e9 |
|
|
BuildService |
BE#801091 |
Length of the record saved. |
BE#801091 DataSourceInfo - f5033f58-f23e-4d83-be13-61180c3db4e9 length is 461 |
BE#801091 DataSourceInfo - f5033f58-f23e-4d83-be13-61180c3db4e9 length is 461 |
|
|
BuildService |
BE#801091 |
Length of the record saved. |
BE#801091 DataSchema - 406466d7-59c6-3d02-b89f-f08f54040573 length is 9275 |
BE#801091 DataSchema - 406466d7-59c6-3d02-b89f-f08f54040573 length is 9275 |
|
|
BuildService |
BE#801091 |
Length of the record saved. |
BE#801091 LogicalDbSchema - f5033f58-f23e-4d83-be13-61180c3db4e9 length is 3806 |
BE#801091 LogicalDbSchema - f5033f58-f23e-4d83-be13-61180c3db4e9 length is 3806 |
|
|
BuildService |
BE#801091 |
Length of the record saved. |
BE#801091 PhysicalExternalDbSchema - 406466d7-59c6-3d02-b89f-f08f54040573 length is 4378 |
BE#801091 PhysicalExternalDbSchema - 406466d7-59c6-3d02-b89f-f08f54040573 length is 4378 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Attaching cube], priority [10] |
BE#125123 Spawned task [Attaching cube], priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task of associating the new build data with the given cube. |
BE#539145 Starting task [Attaching cube] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
BE#539145 Starting task [Attaching cube] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Attaching cube] result status: COMPLETED |
BE#029473 Task [Attaching cube] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Attaching cube] completed. Duration: 00:00:00.001 |
BE#960343 Task [Attaching cube] completed. Duration: 00:00:00.001 |
|
|
InternalRequestProxy |
BE#166586 |
Sends a request to associate the built data to the given cube. |
BE#166586 Sent async request ID=<RequestID> (attachNewlyBuiltCube), waiting... |
BE#166586 Sent async request ID=1a7cc8eb-f7ba-4944-8eef-068b3d6a5606 (attachNewlyBuiltCube), waiting... |
BE#130359 service not found, serviceName: Management Service
BE#919403 Async request ID=<request ID> timeout
BE#150935 Timeout on Attach newly built cube |
If Zookeeper is down or management service is not found.
This will designate a timeout on the request to the management pod. Timeout duration is based on the configuration in the Configuration Manager in "Base configuration" with parameter: serviceCallTimeout.value.
Check management.log to further investigate what happened to this request.
In most cases, this designates that the management pod is taking a while to bring up a new pod for the build. |
|
|
Indicates a successful response is received. |
BE#541125 got async response for ID <Request ID> |
BE#541125 got async response for ID 1a7cc8eb-f7ba-4944-8eef-068b3d6a5606 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Creating live models, priority [10] |
BE#125123 Spawned task [Creating live models, priority [10] |
|
|
AbstractTask |
BE#539145 |
|
BE#539145 Starting task [Creating live models] under group <build ID> |
BE#539145 Starting task [Creating live models] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Creating live models] result status: COMPLETED |
BE#029473 Task [Creating live models] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Creating live models] completed. Duration: 00:00:00.001 |
BE#960343 Task [Creating live models] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Storing metadata, priority [10] |
BE#125123 Spawned task [Storing metadata, priority [10] |
|
|
AbstractTask |
BE#539145 |
|
BE#539145 Starting task [Storing metadata] under group <build ID> |
BE#539145 Starting task [Storing metadata] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
BuildMetaDataStorerTaskV2 |
BE#183081 |
Save the cube metadata in the cube farm in the "BuildMetaData.json" file. |
BE#183081 Storing BuildMetaData |
BE#183081 Storing BuildMetaData |
BE#303365 Failed to write <file name> <exception>
BE#897958 Failed to write <file name> Failed to store ECM model file |
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Storing metadata] result status: COMPLETED |
BE#029473 Task [Storing metadata] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Storing metadata] completed. Duration: 00:00:00.001 |
BE#960343 Task [Storing metadata] completed. Duration: 00:00:00.001 |
|
|
TaskGroup |
BE#345155 |
Sets the workplan status to "completed". |
BE#345155 Group <build ID> workplan state set to Completed |
BE#345155 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state set to Completed |
|
|
TaskGroup |
BE#345155 |
Sets the workplan status to "finalizing". |
BE#345155 Group <build ID> workplan state set to Finalizing |
BE#345155 Group 27364933-0325-41c3-8bbe-e28c79f19244 workplan state set to Finalizing |
|
|
TasksCoordinatorImpl |
BE#936003 |
|
BE#936003 Group <build ID> executing post tasks |
BE#936003 Group 27364933-0325-41c3-8bbe-e28c79f19244 executing post tasks |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Stopping failure cube, priority [10] |
BE#125123 Spawned task [Stopping failure cube, priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task when the build has failed and the failed cube must be stopped. |
BE#539145 Starting task [Stopping failure cube] under group <group ID> |
BE#539145 Starting task [Stopping failure cube] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Stopping failure cube] result status: COMPLETE |
BE#029473 Task [Stopping failure cube] result status: COMPLETE |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Stopping failure cube] completed. Duration: <duration> |
BE#960343 Task [Stopping failure cube] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
|
BE#125123 Spawned task [Providers cleanup, priority [10] |
|
|
AbstractTask |
BE#539145 |
Starts the task when the build has failed and the failed cube must be stopped. |
If the source is an older connector, this entry shows that the connector service is being cleaned. |
BE#539145 Starting task [Providers cleanup] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Providers cleanup] result status: COMPLETED |
BE#029473 Task [Providers cleanup] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Providers cleanup] completed. Duration: <duration> |
BE#960343 Task [Providers cleanup] completed. Duration: 00:00:00.001 |
|
|
AbstractTask |
BE#029473 |
Source data connector. |
BE#978913 Connector service <data provider> |
BE#978913 Connector service MySql_1a8ec796-2205-4e7d-8012-fdcf904c9795 is not registered as a provider |
|
|
|
BE#960343 |
The given usage of the source data connector is released. |
BE#763476 Connector entry no longer exists: <data provider> |
BE#763476 Connector entry no longer exists: MySql_1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
TasksCoordinatorImpl |
BE#125123 |
|
BE#125123 Spawned task [Schema cleanup priority [10] |
BE#125123 Spawned task [Schema cleanup priority [10] |
|
|
AbstractTask |
BE#539145 |
When the build fails, the temporary schema that was created is cleaned up. |
BE#539145 Starting task [Schema cleanup] under group <build ID> |
BE#539145 Starting task [Schema cleanup] under group 27364933-0325-41c3-8bbe-e28c79f19244 |
|
|
TasksCoordinatorImpl |
BE#029473 |
Task completed. |
BE#029473 Task [Schema cleanup] result status: COMPLETED |
BE#029473 Task [Schema cleanup] result status: COMPLETED |
|
|
AbstractTask |
BE#960343 |
Task duration. |
BE#960343 Task [Schema cleanup] completed. |
BE#960343 Task [Schema cleanup] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Cancelling destination commands priority [10] |
BE#125123 Spawned task [Cancelling destination commands priority [10] |
|
|
AbstractTask |
BE#539145 |
When the build fails, and there are still pending commands that are being executed against the destination database, a cancel command will be sent. |
BE#539145 Starting task [Cancelling destination commands] under group <build ID> |
BE#539145 Starting task [Cancelling destination commands] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Canceling destination commands] result status: COMPLETED |
BE#029473 Task [Canceling destination commands] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Canceling destination commands] completed. Duration: <duration> |
BE#960343 Task [Canceling destination commands] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Custom code cleaner [10] |
BE#125123 Spawned task [Custom code cleaner [10] |
|
|
AbstractTask |
BE#539145 |
Cleans up the temporary CSV files that are generated for the custom code when a build fails. |
BE#539145 Starting task [Custom code cleaner] under group <build ID> |
BE#539145 Starting task [Custom code cleaner] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Custom code cleaner] result status: COMPLETED |
BE#029473 Task [Custom code cleaner] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Custom code cleaner] completed. Duration: <duration> |
BE#960343 Task [Custom code cleaner] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [Build models cleaner [10] |
BE#125123 Spawned task [Build models cleaner [10] |
|
|
AbstractTask |
BE#539145 |
This task deletes the models entry from MongoDB in case of cancellation. |
BE#539145 Starting task [Build models cleaner] under group <build ID> |
BE#539145 Starting task [Build models cleaner] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [Build models cleaner] result status: COMPLETED |
BE#029473 Task [Build models cleaner] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [Build models cleaner] completed. Duration: <duration> |
BE#960343 Task [Build models cleaner] completed. Duration: 00:00:00.001 |
|
|
TasksCoordinatorImpl |
BE#125123 |
Instantiates task. |
BE#125123 Spawned task [End message [10] |
BE#125123 Spawned task [End message [10] |
|
|
AbstractTask |
BE#539145 |
Task notifies that the build has completed. |
BE#539145 Starting task [End message] under group <build ID> |
BE#539145 Starting task [End message] under group 1a8ec796-2205-4e7d-8012-fdcf904c9795 |
|
|
AbstractTask |
BE#029473 |
Task completed. |
BE#029473 Task [End messager] result status: COMPLETED |
BE#029473 Task [End messager] result status: COMPLETED |
|
|
TasksCoordinatorImpl |
BE#960343 |
Task duration. |
BE#960343 Task [End message] completed. Duration:<duration> |
BE#960343 Task [End message] completed. Duration: 00:00:00.001 |
|
|
BuildMessageListenerService |
BE#353798 |
Sends a notification that the build has succeeded. |
BE#353798 Logger: (BUILD_SUCCEEDED) Build finished successfully |
BE#353798 Logger: (BUILD_SUCCEEDED) Build finished successfully |
|
|
BuildsTrackerService |
BE#345155 |
Sets the build plan to completion. |
BE#345155 Group <buildid> workplan state set to Completed |
BE#345155 Group 1a8ec796-2205-4e7d-8012-fdcf904c9795 workplan state set to Completed |
|
|
BuildsTrackerService |
BE#312940 |
Clears build progress tracking data. |
BE#312940 cleaning builds tracker for data source ID: <source ID> |
BE#312940 cleaning builds tracker for data source ID: f5033f58-f23e-4d83-be13-61180c3db4e9 |
|
|
BuildsTrackerService |
BE#434466 |
Removes the given build from the queue. |
BE#434466 Removing build ID BuildID(buildId=<build ID>) from maps |
BE#434466 Removing build ID BuildID(buildId=1a8ec796-2205-4e7d-8012-fdcf904c9795) from maps |
|
|
BuildsTrackerService |
BE#986898 |
Removes the data source from the providers in the memory map. |
BE#986898 Removing data source ID <source ID> from running initiate map |
BE#986898 Removing data source ID f5033f58-f23e-4d83-be13-61180c3db4e9 from running initiate map |
|
|
BuildService |
BE#195426 |
Releases the build from the queue. |
BE#195426 Releasing build plan from queue: <build ID>, Completed |
BE#195426 Releasing build plan from queue: 1a8ec796-2205-4e7d-8012-fdcf904c9795, Completed |
|
|
TasksCoordinatorImpl |
BE#753071 |
Execution completed. |
BE#753071 Execution DONE: groupId=<build ID>, state=Completed |
BE#753071 Execution DONE: groupId=1a8ec796-2205-4e7d-8012-fdcf904c9795, state=Completed |
|
|