FineDB Table Structure

  • Last update: January 06, 2026
  • iconNote:
    This document applies to FineDataLink of V4.2.5.1 and later versions.

    Overview

    This document mainly introduces the structure of FineDB tables related to FineDataLink. For the platform-related FineDB table structure, see FineDB Table Structure.

    iconNote:

    1. This document uses the built-in project database as an example. Note that field data types may differ if you are using an external database.

    2. The FineDB configuration database stores project configuration information. Tables are interrelated. Arbitrary modifications may lead to serious consequences, such as project startup failure.

    Do not manually add, delete, or modify any data in the FineDB database! Such an operation may cause irreparable bugs, and you will bear the consequences.

    Data Development Module

    Entity-Relationship Diagram for the Data Development Module

    The relationships between tables are as follows:

    FDL_DEV_GLOBAL_PARAM

    It is the global parameter definition table that defines and stores global parameter configuration.

    Field NameTypeDescription
    ID
    varcharPrimary key (UUID)
    CONFIG
    varcharConfiguration of the dynamic parameter, including the reader and output configuration. This field has been added since V4.1.8.1.
    CREATETIME
    varcharParameter creation time (in the timestamp format)
    CREATOR
    varcharParameter creator
    DATATYPE
    varcharType of static parameters, including DATESTRINGBOOLEAN, and NUMERIC
    NAME
    varcharParameter Name
    PARAM_TYPE
    varcharParameter type, including DYNAMIC and STATIC. This field has been added since V4.1.8.1.
    UPDATEDETAIL
    varcharA list of users who modified the parameter and the corresponding modification timestamps
    VALUE
    varcharParameter value: the actual value for static parameters, or the debug value for dynamic parameters
    DESCRIPTION
    varcharParameter description
    SCOPE_CONFIGvarcharScope configuration

    FDL_WORK_LAST_RECORD

    This table records information about the most recent execution records of tasks.

    • If a scheduled task has not run today, the table will retain its most recent execution record.

    • If the scheduled task has run today, a new execution record will be added (whose LASTRECORD value is true, indicating it is the most recent execution record). The historical execution record will not be deleted immediately.

    Field NameTypeDescription
    ID
    varcharInstance ID. ID is the primary key (UUID) of this table.
    DIRTYDATANUM
    bigintDirty data count
    FINISHTIME
    bigintTask completion time
    LASTMODIFIEDTIME
    bigintLast modification time
    LASTRECORD
    boolean

    Whether it is the latest run record

    Example value: true

    PATH
    varchar

    Storage path for execution instance statistics and task snapshots

    Example value: dpworks/record/2024-03-13/04c51446-0053-48f3-b507-bad1bdf46592.log

    SOURCEEXECUTEID
    varchar

    ID of the retried instance

    This field has a value if the instance has been retried. Otherwise, the value is null.

    STARTTIME
    bigintTask start time
    TASKID
    varcharTask ID
    TASKSTATUS
    varcharTask running status, including INITIALBUILD_FAILQUEUINGRUNNINGSUCCESSERRORINVALID, and INTERRUPT
    TRIGGERBY
    varchar

    Trigger source

    It shows the username for manual triggers, or the scheduling plan ID for scheduled triggers.

    TRIGGERMETHOD
    varcharTask trigger type, including FIX_TIMEMANUALMANUAL_RETRY, and EVENT
    TRIGGERTIME
    bigintTriggering timestamp

    FDL_WORK_DELETE

    This table is a backup table for deleted tasks. The table is required to retain the task ID and task name of each task at the time of deletion.

    Field NameTypeDescription
    ID
    varcharPrimary key (UUID), task ID
    TASKNAME
    varcharTask name

    FDL_PLAN_CALENDAR

    This table is the scheduling calendar table, storing scheduling calendars uploaded by users.

    Field NameTypeDescription
    ID
    varcharInstance ID. ID is the primary key (UUID) of this table.
    DATES
    varcharCalendar dates
    ENDTIME
    bigintCalendar end time
    FILENAME
    varcharFilename when importing the calendar
    NAME
    varcharCalendar name
    QUARTZ_CALENDAR_NAME
    varcharCalendar name in the QUARTZ_CALENDAR table
    STARTTIME
    bigintCalendar start time
    TIMEZONE_ID
    varcharTime zone

    FDL_PLAN_SCHEDULE

    This table covers both timed/event scheduling and single/batch scheduling, including four scenarios, described briefly as follows:

    Type field in the PLAN_DETAIL columnTIME Value in the SCHEDULE_TYPE ColumnEVENT Value in the SCHEDULE_TYPE Column (Deprecated in Versions 4.1.11.1 and Later)
    WORK_SCHEDULE_PLAN
    Single-task timed schedulingSingle-task event scheduling
    SCHEDULE_PLANBatch task timed schedulingBatch task event scheduling

    The table structure of FDL_PLAN_SCHEDULE is shown in the following table.

    Field NameTypeDescription
    ID
    varcharPrimary key (UUID)
    ADD_TIME
    varcharCreation time
    BUSINESS_TYPE
    integerBusiness type
    PLAN_DETAIL
    varchar

    Example:

    {
        "id": "82606bf6-4ccf-4ba9-907a-3b417334511e", //Plan ID 
        "name": "Scheduling 1-Timed B", //Plan name 
        "type": "WORK_SCHEDULE_PLAN" //Plan type: Single-task plan: WORK_SCHEDULE_PLAN; Batch plan: SCHEDULE_PLAN
    }
    PLAN_ID
    varcharPlan ID
    SCHEDULE
    varchar

    Scheduling configuration - timed scheduling:

    FieldDefinition
    IDSchedule ID, its value equals schedule_id in the table
    scheduleOpen
    Whether the schedule is enabled
    startTimeStart time of the schedule
    frequencyFor example:
    "frequency": {    // Scheduling frequency configuration
        "type": 2,                    
        "value": {             // Specific frequency configuration
        "cron": null,    // Cron expression (used when type is cron)
          "executeTime": null,    // Execution time point (used when executing by time point)
          "executeDay": null,   // Execution date (used when executing by date)
          "executeMonth": null,   // Execution month (used when executing by month)
          "space": 1,         // Interval quantity, used in conjunction with a unit
          "unit": 3              // Time unit
        }
      },

    Meaning of the type field:

    TypeDefinition
    0Disabled
    1Only execute once
    2Simple repeated execution
    3Detailed frequency settings
    4Cron/Expression-based scheduling
    endTime End time of the schedule
    typeType of scheduling, TIME represents timed scheduling
    calendarScheduling calendar

    Scheduling configuration - Event scheduling (deprecated in version 4.1.11.1 and later):

    FieldDefinition
    IDScheduling ID
    scheduleOpenWhether scheduling is enabled
    dependentTasksList of dependent tasks
    conditionExecution condition
    typeType of scheduling, EVENT represents event scheduling
    SCHEDULE_ID
    varcharScheduling ID (event scheduling does not have this field)
    SCHEDULE_TYPE
    varchar

    Scheduling Type:

    • Versions before 4.1.11.1: Includes timed scheduling (TIME) and event scheduling (EVENT)

    • Versions 4.1.11.1 and later: Timed scheduling (TIME)

    FDL_PLAN_WORK

    This table defines the relationship between plans (including both timed and event-based schedules) and tasks. A single plan can correspond to multiple tasks.

    iconNote:
    In versions before 4.2.5.1, the table name was FINE_DP_PLAN_WORK. In version 4.2.5.1 and later, the FINE_DP_PLAN_WORK table was deprecated.
    Field NameTypeDescription
    ID
    varcharPrimary key (UUID)
    PLAN_ID
    varcharExecution plan ID
    WORK_ID
    varcharTask ID
    WORK_TYPE
    varcharTask type, such as a scheduled task (TIMING)

    FDL_EXEC_RECORD_TRIGGER

    This table records events that can trigger event scheduling.

    Field NameTypeDescription
    ID
    varcharRecord ID
    LAST_MODIFIED_TIME
    bigint

    Last modification time

    Example data: 1721704150000

    TASK_GROUP_LIST
    varcharList of triggered task groups
    TASK_ID
    varcharTask ID
    TASK_STATUS
    varchar

    Task status (must be a completed status)

    Example data: SUCCESS

    FDL_SCHEDULE

    This table stores the basic information for event scheduling.

    Field NameTypeDescription
    ID
    varcharPlan ID
    ADD_TIME
    bigint

    Add time

    It can be sorted by the addition time.

    DESCRIPTION
    varcharDescription
    NAME
    varcharPlan name
    STATUS
    varchar

    Scheduling status

    Three possible states: OPEN/CLOSE/ABNORMAL

    FDL_TASK_GROUP

    This table stores the task groups for event scheduling.

    Field NameTypeDescription
    ID
    varcharTask ID
    JUDGEMENT
    varchar

    Judgement Condition:

    {
       "type":TIMING/REALTIME
       "condition": {
           "type":"judge",
           "conditionCompareType":"DATE_AFTER",
           "valueType":"DATE",
           "source": {
               "type":"field",
               "value":"taskFinishTime",
           },
           "target":{
               "type": "DATE_INTERVAL",
               "value": {
                   "num": 1,
                   "unit": "DAY"
               }
           }
       }
       "timing":{
           "id": "0f3c2bb9-498a-4bf0-991b-545aa13a41d3", //Actual task group ID
           "scheduleOpen": true, //Whether to enable scheduling; default value is true
           "startTime": {  //Scheduling start time
               "value": "2024-03-13 18:22:19"
           },
           "frequency": {   //Scheduling frequency configuration
               "type": 1,
               "value": null
           },
           "endTime": {  //Scheduling end time
               "type": 1,
               "value": null
           },
           "type": "TIME", //Scheduling type, TIME represents timed scheduling
           "calendar": {
               "open": false,
               "calendarId": ""
           }
       }  
       once:true,//Whether to use only once
       status:"SUCCESS" //Task status that can trigger downstream task groups; SUCCESS/FINISHED
    }
    NAME
    varcharTask group name
    PLAN_ID
    varcharPlan ID
    STATUS
    varcharTask group status: OPEN/CLOSE

    FDL_TASK_MAP_GROUP

    This table is the mapping table for tasks and task groups. For details about the task group description, see Event Scheduling.

    Field NameTypeDescription
    IDvarcharTask ID
    GROUP_ID
    varcharTask group ID

    FDL_TASK_GROUP_RELATION

    This table is the relationship table for task groups.

    Field NameTypeDescription
    IDvarcharRelationship ID
    FROM_ID varcharSource of the task group relationship
    TO_ID varcharTarget of the task group relationship
    PLAN_ID varcharPlan ID

    Real-Time Pipeline

    Entity-Relationship Diagram of the Real-time Data Pipeline

    The relationships between tables are as follows:

    FDL_PIPE_SRC_INFO_DEFINE

    This table is the pipeline source information table.

    Field NameTypeDescription
    IDvarcharTask ID
    CONNECTION_TYPEvarcharConnection type
    CONNECTION_NAMEvarcharConnection name
    READ_MODE varchar

    Read mode

    Example data:

    {
      "name": "Binlog",
      "startPoint": "",
      "format": "",
      "schemaRegistryUrl": ""
    }

    SYNC_TYPE

    varchar

    Synchronization Type

    Deleted in version 4.2.11.3

    INCREMENTAL_SYNC_POINTvarchar

    Incremental starting point only

    Deleted in version 4.2.11.3

    FDL_PIPE_SRC_TABLE_DEFINE

    This table contains information related to the data source.

    Field NameTypeDescription
    IDvarchar

    Source table ID in the pipeline task

    TASK_IDvarcharTask ID
    TARGET_TABLE_ID
    varchar

    Target table ID

    FDL_DATABASEvarcharDatabase name
    FDL_SCHEMAvarcharSchema name
    FDL_TABLEvarchar

    Table name

    FULL_SYNC_FINISHEDboolean

    Whether synchronization is completed

    Deleted in version 4.2.11.3

    FDL_INVALIDbooleanWhether the table is invalid
    FDL_COLUMNSvarcharField information
    SYNC_TYPEvarchar

    Synchronization Type:

    • FULL_AND_INCREMENTAL

    • INCREMENTAL

    Added in version 4.2.11.3

    START_POINT_TYPEvarcharIncremental starting point type
    • CUSTOM: Custom starting point

    • EARLIEST: Earliest valid starting point

    • DEFAULT: Task start time

    Added in version 4.2.11.3

    startTimeLong

    Incremental start time, in timestamp format

    This configuration takes effect only when the startup type is custom.

    Added in version 4.2.11.3

    FDL_PIPE_TARGET_INFO_DEFINE

    This table is the pipeline target information table.

    Field NameTypeDescription
    IDvarchar Task ID
    CONNECTION_TYPEvarcharConnection type
    CONNECTION_NAMEvarchar

    Connection name

    FDL_DATABASEvarcharDatabase name
    FDL_SCHEMAvarcharSchema name
    SOURCE_CHANGE_STRATEGYvarchar

    Deletion strategy, currently including logical deletion and physical deletion

    Removed in version 4.2.11.3
    DELETE_STRATEGYvarchar

    Deletion strategy, currently including logical deletion and physical deletion

    UPDATE_TIMESTAMP_COLUMNbooleanWhether to enable the timestamp field
    APPLY_DDLbooleanWhether to apply DDL changes
    ENABLE_HIGH_SPEED_LOADboolean

    Whether high-speed loading is enabled

    LOAD_TYPEvarchar

    Load Type

    ENABLE_NO_PRIMARYboolean

    Whether to enable synchronization without a primary key

    Removed in version 4.2.11.3

    EXTRA_CONFIGvarcharAdditional configurations (currently include batch configuration)
    Removed in version 4.2.11.3

    FDL_PIPE_DEST_TABLE_DEFINE

    This table stores configuration information for pipeline target tables.

    Field NameTypeDescription
     ID
    varcharSource table ID in the pipeline task

    TASK_IDvarchar

    Task ID

    FDL_DATABASEvarcharDatabase name
    FDL_SCHEMAvarchar

    Schema name

    FDL_TABLEvarchar

    Table name

    TO_TABLE_MODEvarchar

    Table Type

     FDL_COLUMNS
    varcharField information
     ADVANCED_CONFIG
    varcharAdditional information
    TO_TABLE_TYPEvarcharTarget table type
    TO_TABLE_COMMENTvarchar

    Comment for the target table

    ENABLE_NULL_COMPAREboolean

    Whether to allow primary keys to be null:

    true: When updating or deleting using primary or logical primary keys, a null value is considered.

    false: By default, primary keys and logical primary keys are assumed not to be null

    COMPARE_KEYSvarchar

    Comparison field

    EXT_COLUMNS varchar
    FDL built-in fields
    INC_WRITE_CONFvarchar

    Incremental write configuration

    FULL_WRITE_CONF

    varchar

    Full write configuration

    EXTRA_CONFIGvarchar

    Other Configurations

    Currently used for batch write configuration

    FDL_PIPE_GROUP_DEFINE

    This table stores the configuration for pipeline task groups.

    Field NameTypeDescription

    ID

    varcharPrimary key (UUID), random 
    TASK_ID
    varcharTask ID
    RULE_NAME
    varcharGroup name
    FDL_COLUMNS
    varcharField information

    FDL_PIPE_TABLE_GROUP_DEFINE

    Field NameTypeDescription
    ID
    varcharPrimary key (UUID), random
    TASK_ID
    varcharTask ID
    GROUP_ID
    varcharGroup ID

     COLUMN_NAME_MAP
    varchar

    Field mapping

    FDL_PIPE_TABLE_MAP_DEFINE

    This table stores the mapping information of pipeline tasks.

    Field NameTypeDescription
     ID
    varchar Primary key (UUID), random
    TASK_IDvarcharTask ID
    SOURCE_IDvarcharGroup ID
    TARGET_IDvarcharField mapping
    MAP_TYPEvarcharMapping method: row mapping, name mapping
    TABLE_MAP_TYPEvarcharMapping type: table-to-table, grouped table-to-table

    FDL_PIPE_SAVEPOINT

    This table stores pipeline task checkpoint records for resuming from breakpoints.

    Field NameTypeDescription
     ID
    varchar

    Record ID

    TASK_IDvarchar

    Task ID

    TYPEvarchar

    Node type

    UPGRADEvarcharUpgrade checkpoint
    VALUEvarcharJSON format, actual checkpoint saved value, which varies by checkpoint type
     INCREMENTAL_TIMESTAMP
    bigint

    Incremental start time

    FDL_PIPE_TABLE_RECORD

    This table stores execution records and statistics of pipeline tasks.

    Some fields represent table-level records (fields highlighted in green in the following table), while task-level records are aggregated from table-level data. Other fields represent task-level records (fields highlighted in gray).

    Field NameTypeDescription
     ID
    varcharTask ID or source table
    DELETE_RECORD_COUNTbigint

    Number of deleted rows (table-level)

    DELETE_TRAFFICbigint

    Volume of deleted data (in Bytes)

    error_record_countbigint

    Number of failed rows

    INSERT_RECORD_COUNTbigint

    Number of inserted rows

    INSERT_TRAFFICbigint

    Volume of inserted data (in Bytes)

    LAST_LOG_TIMEbigint

    Last task record time

    LAST_READ_TIMEbigintLast read time on the FineDataLink server
    LAST_START_TIMEbigintLast task start time
    LAST_WRITE_TIMEbigint

    Last write time on the FineDataLink server

     read_record_count
    bigintNumber of rows read
    read_total_trafficbigint

    Volume of data read (in Bytes)

    table_full_namevarchar

    Full name of the source table

    TASK_IDvarchar

    Task ID

    to_sync_record_countbigint

    Number of rows to be synchronized

    to_sync_trafficbigint

    Data volume to be synchronized (in Bytes)

    TYPEvarchar

    Type of record, whether it is a table or task; deprecated in version 4.2.1.1 and later 

    UPDATE_RECORD_COUNTbigintNumber of updated rows
    UPDATE_TRAFFICbigintVolume of updated data (in Bytes)
    work_durationbigintActual working duration of the task (if the task is interrupted, the interruption time will not be counted); deprecated in version 4.2.1.1 and later
     LAST_MASSAGE_READ_TIME
    bigint

    Time of the corresponding log in the database when last read 

    LAST_MASSAGE_WRITE_TIMEbigint

    Time of the corresponding log in the database when last written

    STATUSvarchar(255)

    Table status

    FDL_PIPELINE_TASK_RECORD

    This table stores execution information of pipeline tasks (task-level).

    Field NameTypeDescription
    IDvarchar (255)Task ID
    STATUSvarcharExecution status of the task
    FIRST_START_TIMEbigintFirst start time
    CREATE_TIMEbigintCreation time
    UPDATE_TIMEbigintUpdate time
    WORK_NODE_IDvarcharRunning node
    LAST_START_TIMEbigintLast start time of the task
    START_MESSAGEvarcharStart message
    NOTICEbooleanWhether to display a notification

    FDL_PIPE_DIRTY_RECORD

    In pipeline tasks, if dirty data is captured, the basic information of the dirty data will be stored in this table.

    Field NameTypeDescription
    IDvarchar (255)Dirty data ID (uniquely identifies a piece of dirty data)
    error_paramsvarcharNo longer used
    ERROR_TYPEvarcharType of dirty data error, represented by the enum name
    FDL_OFFSETbigintThe offset of dirty data in the specified topic
    PRIMARY_KEYvarcharPrimary key information, a JSON stringExample:
    {
    "before": "Primary key before update",
    "after": "Primary key after update"
    }
    taskIdvarcharScheduled task ID
    task_table_idbigintTable ID
    timestampbigintDirty data capture time
    fdl_topicvarchar(255)The topic where dirty data is located
    fdl_codeintThis field is used to record some flag bits of dirty data, with a length of 32 bits, allowing marking of 32 different states. Currently, the first three bits from right to left are used to mark insert, delete, and update in order. Dirty data from primary key updates will be treated as delete and insert, and the corresponding binary code is 11
    error_messagevarchar(2048)Error message from Java stack exception
    fdl_extralongtextAdditional information (such as error stack traces, breakpoint information for the current data, etc., stored in JSON format)

    Data Service

    Entity-Relationship Diagram for the Data Service Module

    The relationships between tables are as follows.

    FDL_SERVICE_APP

    This table stores call records of data services.

    Field NameTypeDescription
    IDvarchar

    Primary key field UUID; no practical function

    PATHvaraharApp path
    APP_IDvarcharApp ID
    AUTH_INFOvarchar

    Authentication information
    Example data:

    {
    "authType": "EmptyAuth", // Currently effective authentication type
    "authConfig": [ //Specific configuration of authentication
    {
    "type": "EmptyAuth" // No authentication
    },
    {
    "code": "AppCode a25787ba-fd6c-4f23-b46a-8b148c2ab1a9",
    "type": "AppCodeAuth" // APPCode authentication
    },
    {
    "secret": "",
    "type": "DigestSignatureAuth" // Digest authentication
    }
    ],
    "type": "Auth"
    }

    FDL_SERVICE_MAPPING

    Mapping table for applications and APIs.

    Field NameTypeDescription
    IDvarcharPrimary key field UUID; no practical function
    API_IDvarcharAPI ID
    APP_IDvarcharApp ID
    EXPIRE_TIMEbigintValidity period
    • The value -1 means no limit.

    • Other values represent corresponding timestamps

    RATE_LIMIT
    varchar
    Access limit:
    FieldDefinition
    limitCount

    Number of access requests allowed per unit time

    • The value -1 means no limit.

    • Other values represent the exact number of requests allowed for that period.

    timeUnit

    Time unit

    • MINUTE: Minutes

    • HOURS: Hours

    • DAYS: Days

    Sample data: Maximum frequency of 100 times per minute

    {
      "limitCount": 100,   // Maximum number of access requests allowed per time unit
      "timeUnit": "HOURS", // Time unit
      "type": "RateLimit"
    }

    FDL_SERVICE_API

    API configuration table.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    REQUEST_PATHvarcharRequest path
    TIMEOUTbigintTimeout limit
    REQUEST_CONFIGvarcharRequest configuration
    RESPONSE_CONFIGvarcharResponse configuration
    SERVICE_CONFIGvarcharService configuration
    TASK_TYPEvarcharType

    FDL_SERVICE_OFFSET

    This table stores the offsets that have already been consumed by the current api_id.

    Added in version 4.2.8.4.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    API_IDvarcharAPI ID
    FDL_OFFSETbigintConsumed data offset

    User Management

    Entity-Relationship Diagram for Database and Table Management

    FINE_DATACENTER_SQL_SCRIPT

    SQL script management table: This table stores user-saved SQL script data.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    CONNECTIONvarcharAssociated data connection
    LAST_LOGvarcharThe latest log (represented as a JSON-serialized log object)
    CONTENTvarcharScript content
    CREATE_TIMEbigintScript creation timestamp
    RULE_NAMEvarcharScript name
    LAST_MODIFIED_TIMEbigintScript update timestamp

    FINE_DATACENTER_UPDATELOG

    SQL Script Management Table: This table stores user-saved SQL script data.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    SCRIPT_IDvarcharThe script ID corresponding to this update record
    EDITORvarcharThe editor corresponding to this update record
    MODIFIED_TIMEbigintUpdate time

    Common Module

    Entity–Relationship Diagram for Common Module

    The relationships between tables are as follows.

    FINE_DP_GENERAL_CONFIG

    This table stores general configurations, defining and managing common settings such as case-conversion rules based on data connections.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    CONFIGlongtext

    The data connection name and its corresponding case conversion rules. Currently, the supported transformations include converting all characters to uppercase (UPPER_CASE) or lowercase (LOWER_CASE).
    Example data:

    {
    "transformation":"UPPER_CASE",
    "connections":["local_fdl_data"]
    }
    CREATE_TIMEbigintConfiguration creation time
    TYPEvarcharThe type of general configuration; currently, only AUTO_CREATE_TABLE_CASE is supported
    UPDATE_TIMEbigintConfiguration modification time

    FINE_DP_OPERATE_HISTORY

    This table stores recent edit records, including the latest marking records from the data development and data pipeline modules.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    OPERATE_TIMEbigintThe timestamp of the operation
    OPERATE_TYPEvarcharThe type of operation (including CREATE, DELETE, and EDIT)
    OPERATE_USERvarcharThe user who performed the operation
    TASK_IDvarcharTask ID
    TASK_NAMEvarcharTask name
    TASK_PATHvarcharTask path
    TASK_TYPEvarcharTask type, including data development (DATA_DEVELOP), data pipeline (PIPELINE_DEVELOP)

    FDL_LINEAGE_NODE

    Each row in this table represents a node in the lineage graph.

    The field values in the following table represent the internal logic of the code and are unrelated to the functionality.

    Field NameDescription
    IDPrimary key
    GRAPH_IDGraph ID
    RESOURCE_IDCorresponding business resource ID
    GROUP_IDNode group ID
    RESOURCE_INFOCorresponding business resource information

    FDL_LINEAGE_EDGE

    Lineage node relationship table:

    Field NameDescription
    IDPrimary key
    SOURCE_IDSource node ID, a foreign key referencing the ID in FINE_DP_LINEAGE_NODE
    TARGET_IDChild node ID, referencing the ID in FINE_DP_LINEAGE_NODE
    GRAPH_IDGraph ID

    FDL_LINEAGE_SQL

    This table stores records of SQL statements that failed to parse. When a SQL parsing failure occurs, it is recorded in this table. Currently, it is used for logging purposes only.

    FDL_CENTER_EVENT_OFFSET

    This table is used to record offset information for the event center.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    HANDLER_TYPEvarcharHandler type
    EVENT_OFFSETbigintEvent offset

    FDL_CONNECTION_LINEAGE

    This table is used for lineage relationships between data connections and tasks.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    RESOURCE_IDvarcharResource ID
    CONNECTION_IDvarcharConnection ID
    RESOURCE_TYPEvarcharResource type
    PUBLISH_STATEvarcharPublish status
    CREATE_TIMEbigintCreation time
    RESOURCE_INFOvarcharResource information

    Data Development - Real-Time Task

    FDL_STREAM_SAVEPOINT

    This table stores the checkpoint information for real-time tasks.

    Field NameTypeDescription
    IDvarcharUUID
    CREATE_TIMEbigintCreation time
    OPERATOR_IDvarcharThe data source operator ID corresponding to the breakpoint
    TYPEvarcharData source type
    UPDATE_TIMEbigintUpdate time
    VALUEvarchar

    Stores breakpoint data (specific data for shared breakpoints is also stored here)

    WORK_IDvarcharTask ID

    FDL_STREAM_WORK_RECORD

    This table stores task execution records. Each time a task runs, a record of its execution is generated.

    Field NameTypeDescription
    IDvarcharPrimary key field UUID
    DIRTY_DATA_NUMbigintThe amount of dirty data
    FINISH_TIMEbigintTask completion time, example data: 1732069683683
    RECORD_IDvarcharExecution record ID
    START_TIMEbigintTask start time
    STATUSvarcharTask status: 0~3 represent startup failure, execution failure, manual pause, and running, respectively
    STOP_BYvarcharThe user who terminated the task
    TRIGGER_BYvarcharThe user who triggered the task
    TRIGGER_METHODvarcharTask start type: 0~1 represents start and reset start, respectively
    WORK_IDvarcharTask ID
    PATHvarcharFile path where the task detail data is stored
    ENGINE_TYPE_NAMEvarcharName of the engine executing the task
    WORKER_NODE_IDvarcharName of the cluster node

    FDL_STREAM_TASK_STATUS

    This table stores the status of real-time tasks, recording the state information of each task.

    Field NameTypeDescription
    IDvarcharUUID
    FIRST_START_TIMEbigintTask first start time
    LAST_START_TIMEbigintTask last start time
    STATUSvarcharTask Status
    WORK_IDvarcharTask ID as key

    Data Detection Task

    Entity-Relationship Diagram for Data Detection

    FDL_DETECTION_RECORD

    This table stores the latest execution record, including the latest run and the initial snapshot generated from that execution.

    Field NameTypeDescription
    IDvarcharPrimary key field UUID; this field is not a primary key
    WORK_IDvarcharTask ID
    START_TIMEbigintStart time
    FINISH_TIMEbigintEnd time
    STATUSvarchar

    Data detection task running status

    (BUILDING: constructing;

    BUILD_FAIL: construction failed;

    PASS - passed;

    NOT_PASS - not passed;

    ERROR: execution failed;

    INVALID - invalid;

    INTERRUPT: interrupted;

    RUNNING: running;

    QUEUING: queuing)

    TRIGGER_METHODvarcharTrigger method(FIX_TIME - Scheduled; MANUAL - Manual)
    TRIGGER_BYvarcharTriggered by
    TRIGGER_TIMEbigintTriggering timestamp
    FAILED_TABLE_COUNTintegerNumber of failed tables
    TOTAL_TABLE_COUNTintegerTotal number of detected tables
    LAST_MODIFIED_TIMEbigintLast modified time
    LAST_RECORDbooleanIt indicates whether this execution record is the most recent one
    PATHvarcharLog file storage path: the path is a folder containing log files and snapshot files

    FDL_DETECTION_WORK

    This is the data detection task configuration table, including task directory and notification settings.

    Field Name TypeDescription
    IDvarcharPrimary key (UUID)
    WORK_IDvarcharTask ID as key
    VERSIONvarcharTask version number
    PROJECT_VERSIONvarcharProject version number
    NAMESPACEvarcharNamespace, used to distinguish subtables
    VALUEvarcharSpecific JSON configuration for different entities
    CREATE_TIMEbigintCreation time
    UPDATE_TIMEbigintUpdate time

    FDL_DETECTION_GLOBAL_RULE

    The Global rule definition table is used to define and store configurations for global rules.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    RULE_NAMEvarcharRule name
    RULE_TYPEvarchar

    Rule type
    Example values: TABLE/COLUMN (meaning table-level/field-level)

    DETECTION_OBJECTvarcharDetection object
    RULE_RANGEvarcharExpected range
    RULE_DETAILvarcharDetailed configuration
    CREATORvarcharCreator
    CREATE_TIMEbigintCreation time
    UPDATE_DETAILvarcharModification record

    FDL_DETECTION_RELATION

    This table represents the relationship between tasks and global rules, storing their many-to-many (N:N) references.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    WORK_IDvarcharTask ID
    RULE_IDvarcharRule ID

    Application Reuse Module

    FINE_DP_MIGRATION_TRACE

    This table maintains the relationship between task IDs and fork IDs. Related functionalities include import/export of scheduled tasks and scheduling plans in batches.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    RESOURCE_IDvarcharResource ID
    RESOURCE_TYPEvarcharResource type  (can be a scheduled task or a scheduling plan)
    FORK_IDvarcharUseless for FineDataLink

    FINE_CONF_ENTITY

    For detailed table structure, see Configuration Information Storage Table.

    This section only records FineDataLink-related fields:

    Starting from version 4.1.9.3, the FINE_CONF_ENTITY table adds the field FDLIntegrationConfig.previewCache, with a default value of false; when set to true, it enables preview caching for operators/nodes, displaying the last cached result directly in the next preview.

    Data Source Module

    FINE_CONNECTION_CATALOG

    This table is the directory table for data connections.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    ENTITY_KEYvarcharData connection name (without ID) or directory ID
    NAMESPACEvarcharNamespace
    VALUE_CLASSvarcharENTITY_VALUESerialized corresponding entity class
    ENTITY_VALUEvarcharConfiguration information in JSON format

    FINE_TEST_CONNECTION

    This table stores the test connection results for data sources.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    ENTITY_KEYvarcharData connection name
    ENTITY_VALUEvarcharConfiguration information in JSON format

    Common Table

    A common table is shared by different modules. The resource_type field distinguishes data from different modules, and resource_id represents the business ID.

    FDL_CATALOG Directory Table

    Field NameTypeDescription
    IDvarcharPrimary key
    CATALOG_TYPEvarchar

    Directory node type:

    • ENTITY – file

    • PACKAGE – folder

    RULE_NAMEvarcharTask name
    PIDvarcharParent node ID
    DESCRIPTIONvarcharDescription
    SORT_INDEXvarcharSorting
    RESOURCE_IDvarcharResource ID, such as scheduled task ID, etc.
    RESOURCE_TYPEvarchar

    Resource type (each business module is distinguished based on this field)

    PIPELINE: Data pipeline

    DATA_SERVICE_API: Data service API

    DATA_SERVICE_APP: Data service application

    DETECTION: Data detection task

    OFFLINE: Scheduled task

    STREAM: Real-time task

    CREATE_USERvarcharNode creator ID
    CREATE_TIMEvarcharCreation time

    FDL_RECYCLEBIN Recycle Bin Table

    Field NameTypeDescription
    IDvarcharPrimary key
    RULE_NAMEvarcharRecycled resource name, such as a scheduled task name
    PATHvarcharDirectory before resource deletion
    RESOURCE_IDvarcharResource ID, such as scheduled task ID, etc.
    RESOURCE_TYPEvarcharResource type (each business module is distinguished based on this field)
    CREATE_USERvarcharResource creator ID
    DELETE_USERvarcharName of the user who deleted the resource
    DELETE_TIMEbigintDeletion Time

    FDL_WORK_INFO Task Information Table

    Field NameTypeDescriptionRemark
    IDvarcharUnique identifier field/
    RESOURCE_IDvarcharResource ID (work_id)/
    RESOURCE_TYPEvarcharResource type, used to distinguish modules such as scheduled tasks, real-time tasks, pipeline tasks, APIs, applications, detection tasks, etc./
    RULE_NAMEvarcharTask name/
    CREATE_TIMEbigintTimestamp of creation time/
    CREATE_USERvarcharCreatorUser's ID
    DESCRIPTIONvarcharTask description/
    UPDATE_TIMEbigintTask configuration update time

    Only records the configuration update time

    • For offline tasks, it records the canvas update time; updating task control does not change this timestamp.

    FDL_WORK_STATUS Task Status Table

    Field NameTypeDescription
    IDvarcharUnique identifier field
    RESOURCE_IDvarcharResource ID (work_id)
    RESOURCE_TYPEvarcharResource type
    TYPEvarcharStatus type, used to distinguish different types of statuses across different modules. For example, scheduled tasks have two types of status: publish status and validation status.
    STATUSvarcharStatus value

    FDL_CONTROL_DEFINE

    This table stores task controls for the development version.

    Field NameTypeDescription
    IDvarcharUnique identifier field
    RESOURCE_IDvarcharResource ID (work_id)
    RESOURCE_TYPEvarcharResource type, used to distinguish modules, namely offline tasks, real-time tasks, pipeline tasks, APIs, applications, detection, etc.
    CONTROLvarcharControl value, containing JSON data of all control values for the task. The control values vary across different resource_type. For details, see the second table in this section.
    RESOURCE_TYPEExample data

    Remark

     OFFLINE
    {
        "workAttributeConfig": {
            "taskPriority": 0,
            "customLogLevel": false,
            "logLevel": "ERROR",
            "dispatchType": null
        },
        "noticeConfig": {
            "notification": false,
            "noticeConfig": {
                "notify": true,
                "notifyInDetail": false,
                "notifyDirtyData": true,
                "notifyDirtyDataInDetail": false,
                "notifyDDLChangeEvent": false
            },
            "userGroup": {
                "users": null,
                "depts": null,
                "roles": null,
                "roleStr": null
            },
            "noticeChannels": []
        },
        "timeoutRetryConfig": {
            "timeoutConfig": {
                "hour": 1,
                "minute": 0,
                "enabled": true
            },
            "retryConfig": {
                "max": 3,
                "delayMinute": 2,
                "enabled": true
            },
            "errorLimitConfig": {
                "enable": false,
                "limit": 1000
            }
        }
    }
    When a scheduled task is created, a default task control record is generated. In the default record, the task controls are as follows:
    {
        "resourceType": "OFFLINE",
        "timeoutRetryConfigEntity": null,
        "noticeEntity": null,
        "workAttributeConfig": null
    }


    PIPELINE
    {
      "id": "01e41650-3ad6-4f7c-9350-30eef420efef",
      "controlId": "83b98b52-08f3-4b13-b132-72a5ea0c8fe8",
      "errorQueueConfig": {
          "limitNum": -1
      },
      "notifyConfig": {
          "notification": false,
          "notifyContent": {
              "taskError": true,
              "syncingSourceTableDeleted": false,
              "notifyInDetail": false,
              "ddl": false,
              "retryNotice": false
          },
          "userGroup": {
              "users": null,
              "depts": null,
              "roles": null,
              "roleStr": null
          },
          "noticeChannels": []
      },
      "retry": {
          "max": 0,
          "delayMinute": 0,
          "enabled": false
      },
      "logConfig": {
          "customLogLevel": true,
          "logLevel": "INFO"
      }
    }
    Task control information for real-time pipeline tasks
     OFFLINE_PIPELINE
    /

    Task control information for scheduled pipeline tasks

    DETECTION/

    Task control information for data detection tasks

    STREAM/

    When a real-time task is created, a default task control record is generated.

    FDL_VERSION_INFO

    The version information table stores basic information about released versions.

    Field NameTypeDescription
    IDvarcharUnique identifier field
    RESOURCE_IDvarcharResource ID (work_id)
    RESOURCE_TYPEvarcharResource type
    VERSIONvarcharVersion number, from 1 to N
    PUBLISH_USERvarcharPublisher, userId
    PUBLISH_TIMEbigintRelease time
    DESCRIPTIONvarcharRelease description

    FDL_CONTROL_VERSION

    This table is the task control version table.

    Field NameTypeDescription
    IDvarcharUnique identifier field
    RESOURCE_IDvarcharResource ID (work_id)
    RESOURCE_TYPEvarcharResource type
    CONTROLvarcharControl value, containing JSON data of all control values for the task
    VERSIONvarcharVersion number

    FDL_CONTROL_DEPLOY

    This table stores task controls for the deployment version.

    Field NameTypeDescription
    IDvarcharUnique identifier field
    CONTROLvarcharControl value, containing JSON data of all control values for the task
    DEPLOY_TIMEbigintLast deployment time
    DEPLOY_USERvarcharDeployer, userId
    RESOURCE_IDvarcharResource ID (work_id)
    RESOURCE_TYPEvarcharResource type

    FDL_CONF_ENTITY_X

    This table is a common configuration table, including fields such as the current version and whether it has been restored.

    Field  Name TypeDescription
    IDvarcharPrimary key (UUID)
    ENTITY_KEYvarcharKey composed of version and task ID, which is unique within the subtable space.
    NAMESPACEvarcharNamespace, used to distinguish subtables
    VALUE_CLASSvarcharSerialized entity class corresponding to the subtable
    ENTITY_VALUEvarcharSpecific JSON configuration for different entities
    The fields IS_DELETED, IS_SEGMENT, KEY_CLASS, SEGMENT_LENGTH, TIMESTAMP, VALUES_INDEX, and VALUES_LENGTH have been deprecated.

    Where namespace is the sub-table name, and entity_value (in JSON format) contains the sub-table fields and data. Example data:

    NAMESPACEExample data of ENTITY_VALUE
    DPFineDBVersionStore

    {
        "version": "4.1.5.5" //Current version number, mandatory field
    }
    DPFineBackupStore"true"/"false"

    Data Detection

    Entity-Relationship Diagram for Data Detection

    FDL_DETECTION_WORK

    This is the data detection task configuration table, including task directory and notification settings.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    WORK_IDvarcharTask ID
    PROJECT_VERSIONvarcharConfigured version number
    TASK_DETAILvarcharDetailed task configuration in JSON format
    CREATE_TIMEbigintCreation time
    CREATE_USERvarcharCreator
    UPDATE_TIMEbigintUpdate time

    FDL_DETECTION_GLOBAL_RULE

    The global rule definition table is used to define and store configurations for global rules.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    RULE_NAMEvarcharRule name
    RULE_TYPEvarcharRule Type
    DETECTION_OBJECTvarcharDetection object
    RULE_RANGEvarcharExpected range
    RULE_DETAILvarcharDetailed configuration
    CREATORvarcharCreator
    CREATE_TIMEbigintCreation time
    UPDATE_DETAILvarcharModification record

    FDL_DETECTION_RELATION

    This table represents the relationship between tasks and global rules, storing their many-to-many (N:N) references.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    WORK_IDvarcharTask ID
    RULE_IDvarcharRule ID

    FDL_DETECTION_RECORD

    This table stores the latest execution record, including the latest run and the initial snapshot generated from that execution.

    Field NameTypeDescription
    IDvarcharUUID
    WORK_IDvarcharTask ID
    START_TIMEbigintStart time
    FINISH_TIMEbigintEnd time
    STATUSvarchar

    Data detection task running status

    (BUILDING-constructing; 

    BUILD_FAIL-construction failed; 

    PASS-passed; 

    NOT_PASS-not passed; 

    ERROR-execution failed; 

    INVALID-invalid; 

    INTERRUPT-interrupted; 

    RUNNING-running; 

    QUEUEING-queuing)

    TRIGGER_METHODvarchar

    Trigger method

    (FIX_TIME - Scheduled; MANUAL - Manual)

    TRIGGER_BYvarcharTriggered by
    TRIGGER_TIMEbigintTriggering timestamp
    FAILED_TABLE_COUNTintegerNumber of failed tables
    TOTAL_TABLE_COUNTintegerTotal number of detected tables
    LAST_MODIFIED_TIMEbigintLast modified time
    LAST_RECORDbooleanIt indicates whether this execution record is the most recent one.
    PATHvarchar

    Log file storage path

    The path is a folder containing log files and snapshot files.

    Real-Time Sharing Center

    FINE_RTC_TASK_CONFIG

    Each collection task has certain configuration data that needs to be persistently stored.

    Field NameTypeDescription
    IDvarcharCollection task ID
    RULE_NAMEvarcharCollection task name
    CONNECTIONvarcharData connection name
    connectionTypeVARCHARData connection type
    READ_MODEvarcharCollection mode, i.e., the type of collector
    CREATE_TIMEbigintIt displays the collection task creation time
    WORKER_NODE_IDvarcharThe cluster node ID where the collection task is currently running or was last run
    DISABLEDboolean

    Whether the collection task is disabled

    This field is deprecated

    task_statusvarcharCollection task running status

    FDL_RTC_CAPTURE_STATE

    This table stores the runtime status data for each collection task, including collection breakpoints, table structures, and other related information.

    Field NameTypeDescription
    IDvarcharCollection task ID (corresponding to the ID in FINE_RTC_TASK_CONFIG)
    update_timebigintLatest update time
    capture_statevarcharCollector status, formatted as a JSON string

    Data Cleaning

    Entity-Relationship Diagram for Data Cleaning

    FDL_DATA_CLEANING_RULE

    This table is the global cleaning rule entity table, used to define and store global cleaning rules.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    RULE_NAMEvarcharGlobal cleaning rule name
    CREATE_TIMEbigintRule creation time
    CREATE_USERvarcharRule Creator
    MODIFY_DETAILvarcharRule modification details
    RULE_ENTITYvarcharDetailed string of the rule configuration
    RULE_SIGNATUREvarcharRule signature

    FDL_DATA_CLEANING_REFER

    This table stores business reference rule details, recording the references of tasks to global cleaning rules within the business.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    RULE_IDvarcharData cleaning rule ID
    TASK_IDvarcharBusiness task ID
    TASK_INFOvarcharBusiness task information
    TASK_NAMESPACEvarcharBusiness task namespace

    Data Source Module

    FINE_CONNECTION_CATALOG

    Data connection catalog table

    Field Name TypeDescription
    IDvarcharPrimary key (UUID)
    ENTITY_KEYvarcharData connection name (without ID) or directory ID
    NAMESPACEvarcharNamespace
    VALUE_CLASSvarcharThe entity class corresponding to entity_value serialization
    ENTITY_VALUEvarcharConfiguration information in JSON format

    FINE_TEST_CONNECTION

    This table stores the test connection results for data sources.

    Field NameTypeDescription
    IDvarcharPrimary key (UUID)
    ENTITY_KEYvarcharData connection name
    ENTITY_VALUEvarcharConfiguration information in JSON format

    Scheduled Pipeline Task

    Entity-Relationship Diagram for Scheduled Pipeline Task

    FDL_OFFLINE_PIPE_SRC_INFO

    This table stores source configuration information for scheduled pipelines.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    CONNECTION_TYPEvarcharConnection type
    CONNECTION_NAMEvarcharConnection name
    DM_CONNECTION_IDvarcharData management connection ID

    FDL_OFFLINE_PIPE_DEST_INFO

    This table stores target configuration information for scheduled pipelines.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    CONNECTION_TYPEvarcharConnection type
    CONNECTION_NAMEvarcharConnection name
    FDL_DATABASEvarcharDatabase name
    FDL_SCHEMAvarcharSchema name
    ADD_UPDATE_TIMESTAMPbooleanWhether to add an update timestamp
    LOAD_TYPEvarcharLoad type

    FDL_OFFLINE_PIPE_TABLE_MAP

    This is the basic mapping information table.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    TASK_IDvarcharTask ID
    MAP_TYPEvarcharColumn mapping type
    CREATE_TIMEbigintCreation time

    FDL_OFFLINE_PIPE_SRC_TABLE

    This table defines the source tables for scheduled pipelines.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    TASK_IDvarcharTask ID
    FDL_DATABASEvarcharDatabase name
    FDL_SCHEMAvarcharSchema name
    FDL_TABLEvarcharTable name
    FDL_COLUMNSvarcharField

    FDL_OFFLINE_PIPE_DEST_TABLE

    This table defines the target tables for scheduled pipelines.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    TASK_IDvarcharTask ID
    FDL_DATABASEvarcharDatabase name
    FDL_SCHEMAvarcharSchema name
    FDL_TABLEvarcharTable name
    TO_TABLE_MODEvarcharTarget table mode (auto-create table/existing table)
    FDL_COLUMNSvarcharField
    TO_TABLE_COMMENTvarcharComment for the target table

    FDL_OFFLINE_PIPE_FINE_APP

    This table stores information about application data source tables.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    TASK_IDvarcharTask ID
    DISPLAY_NAMEvarcharDisplay name
    TABLE_TYPEvarcharTable type (full table/incremental table)
    SUB_TABLEbooleanWhether it is a subtable
    PARENT_TABLE_IDvarcharParent table ID
    PARENT_FIELDvarcharParent table field
    MAIN_TABLE_IDvarcharMain table ID
    BEGIN_OFFSETbigintInitial offset
    FDL_OFFSETbigintCurrent offset
    SUB_TABLE_METHODvarcharSubtable processing method

    FDL_OFFLINE_PIPE_LOG_RECORD

    This table stores logs for scheduled pipelines.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID
    TASK_IDvarcharTask ID
    exec_idvarcharExecution ID
    source_table_idvarcharSource table ID
    log_typevarcharLog type (task configuration, task start/stop, etc.)
    log_levelvarcharLog level (INFO, WARN, ERROR, etc.)
    log_classvarcharLog class (task-level logs, table-level logs, etc.)
    descvarcharLog description
    detailtextLog details

    FDL_OFFLINE_PIPE_INS_REC

    This table is the operation and maintenance (O&M) record table.

    Added in version 4.2.8.1.

    Field NameTypeDescription
    IDvarcharPrimary key ID (using the execution ID as the primary key)
    WORK_IDvarcharWork ID
    START_TIMEbigintStart time
    FINISH_TIMEbigintEnd time
    CONSUME_TIMEbigintConsumption time
    INSTANCE_STATUSvarcharExecution record status
    TRIGGER_METHODvarcharTrigger method
    TRIGGER_BYvarcharTrigger source
    TOTAL_TABLE_COUNTintegerNumber of total synchronized tables
    LAST_RECORDbooleanWhether it is the latest record
    TABLE_DETAILvarcharTable details


    附件列表


    主题: System Management
    Previous
    Next
    • Helpful
    • Not helpful
    • Only read

    滑鼠選中內容,快速回饋問題

    滑鼠選中存在疑惑的內容,即可快速回饋問題,我們將會跟進處理。

    不再提示

    10s後關閉

    Get
    Help
    Online Support
    Professional technical support is provided to quickly help you solve problems.
    Online support is available from 9:00-12:00 and 13:30-17:30 on weekdays.
    Page Feedback
    You can provide suggestions and feedback for the current web page.
    Pre-Sales Consultation
    Business Consultation
    Business: international@fanruan.com
    Support: support@fanruan.com
    Page Feedback
    *Problem Type
    Cannot be empty
    Problem Description
    0/1000
    Cannot be empty

    Submitted successfully

    Network busy