Rosetta loading job freezes

I’m trying to run the below load job under Docker V4.64.0 on top of macOS Tahoe 26.3.1 arm64 + Rosetta. I’m using TigerGraph-community-4.2.2.

I’m getting the following error message that the loading status is “Waiting for other loading jobs to finish.”

I’m running the TigerGraph gsql command:
gsql -u $userName -p $password -g $graphName ‘/home/tigergraph/mydata/Genealogy/DDLs/Data/loadVertexData[1].gsql’

Installing Data File: /home/tigergraph/mydata/Genealogy/DDLs/Data/loadVertexData[1].gsql
Using graph ‘Genealogy_Graph’
Successfully created loading jobs: [Genealogy_Graph_Vertex_Job].
[Tip: Use “CTRL + C” to stop displaying the loading status update, then use “SHOW LOADING STATUS ” to track the loading progress again]
[Tip: Manage loading jobs with “ABORT/RESUME LOADING JOB ”]
Running the following loading job:
Job name: Genealogy_Graph_Vertex_Job
Jobid: Genealogy_Graph.Genealogy_Graph_Vertex_Job.file.m1.1773369969116
Log directory: /home/tigergraph/tigergraph/log/fileLoader/Genealogy_Graph.Genealogy_Graph_Vertex_Job.file.m1.1773369969116
Job “Genealogy_Graph.Genealogy_Graph_Vertex_Job.file.m1.1773369969116” loading status
Current timestamp is 2026-03-13 02:52:07.663
Loading status was last updated at 2026-03-13 02:46:09.182.
[WAITING] m1 ( Finished: 0 / Total: 0 )
Waiting for other loading jobs to finish.

When I try to abort the job, the abort just hangs. In fact, it also hangs port 9000. I’m unable to run a simple ping job:
curl -X GET “http://localhost:9000/echo” from my Mac OS.

My loading job works fine under Docker image that’s running Docker Linux on a Intel box.
---------------------loading job ----------------------------

Load the Vertex Data for Genealogy_Graph

Use Graph Genealogy_Graph
DROP JOB Genealogy_Graph_Load_Data_Job
CREATE LOADING JOB Genealogy_Graph_Vertex_Job FOR GRAPH Genealogy_Graph {
DEFINE FILENAME DS1 = “./GraphData/Person.csv”;

LOAD DS1 TO VERTEX Person VALUES($0, $2, $3, $4, $5, $6, _) USING SEPARATOR=“,”, HEADER=“true”, QUOTE=“double”, EOL=“\n”;
}
#run the Vertex loading job
RUN LOADING JOB Genealogy_Graph_Vertex_Job

#drop the job, indicating the job is completed
DROP JOB Genealogy_Graph_Vertex_Job

Finally, it woud be really great if you could build an arm64 Docker image.

Mitch DeFelice