dcmsend -v -aet SENDER -aec DCM4CHEE 192.168.2.197 11112 dicomfile.dcm
I: checking input files ...
I: starting association #1
I: initializing network ...
I: negotiating network association ...
I: Requesting Association
F: cannot negotiate network association: DUL network read timeout
00:13:53,995 INFO [org.dcm4che3.net.Connection] (EE-ManagedExecutorService-default-Thread-2) Accept connection Socket[addr=/192.168.2.198,port=57380,localport=11112]
00:13:54,010 DEBUG [org.dcm4che3.net.Association] (EE-ManagedExecutorService-default-Thread-2) /192.168.2.197:11112<-/192.168.2.198:57380(1): enter state: Sta2 - Transport connection open
00:13:54,011 DEBUG [org.dcm4che3.net.Connection] (EE-ManagedExecutorService-default-Thread-2) Wait for connection on /0.0.0.0:11112
Proto Recib Enviad Dirección local Dirección remota Status
tcp 0 0 *:postgresql *:* LISTEN
tcp 0 0 *:8443 *:* LISTEN
tcp 0 0 *:ldap *:* LISTEN
tcp 0 0 *:9990 *:* LISTEN
tcp 0 0 *:dicom *:* LISTEN
tcp 0 0 localhost:3528 *:* LISTEN
tcp 0 0 *:2575 *:* LISTEN
tcp 0 0 *:http-alt *:* LISTEN
tcp 0 0 localhost:ldap localhost:54246 STABLISHED
tcp 265 0 192.168.2.197:dicom 192.168.2.198:57548 STABLISHED
tcp 0 0 localhost:54246 localhost:ldap STABLISHED
tcp 0 0 localhost:postgresql localhost:50644 STABLISHED
tcp 0 0 localhost:50648 localhost:postgresql STABLISHED
tcp 0 0 192.168.2.197:ssh 192.168.2.198:54906 STABLISHED
tcp 0 0 localhost:50644 localhost:postgresql STABLISHED
tcp 266 0 192.168.2.197:dicom 192.168.2.198:57546 CLOSE_WAIT
tcp 0 0 localhost:postgresql localhost:50648 STABLISHED
tcp 266 0 192.168.2.197:dicom 192.168.2.197:47446 CLOSE_WAIT
I: Association Accepted (Max Send PDV: 16366)
I: sending SOP instances ...
I: Sending C-STORE Request (MsgID 1, CR)
I: Received C-STORE Response (Success)
I: Releasing Association
I:
I: Status Summary
I: --------------
I: Number of associations : 1
I: Number of pres. contexts : 1
I: Number of SOP instances : 1
I: - sent to the peer : 1
I: * with status SUCCESS : 1
Hi,I've found something estrange,
If I go to "Monitoring" , Control Tab , and press RELOAD when the image is being send (actually is the negotiating step) , then associating is accepted , then :
I: Association Accepted (Max Send PDV: 16366)
I: sending SOP instances ...
I: Sending C-STORE Request (MsgID 1, CR)
I: Received C-STORE Response (Success)
I: Releasing Association
I:
I: Status Summary
I: --------------
I: Number of associations : 1
I: Number of pres. contexts : 1
I: Number of SOP instances : 1
I: - sent to the peer : 1
I: * with status SUCCESS : 1
I am dealing with a DB deadlock ?Nicolás--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+unsubscribe@googlegroups.com.
To post to this group, send email to dcm...@googlegroups.com.
Visit this group at https://groups.google.com/group/dcm4che.
For more options, visit https://groups.google.com/d/optout.
Hi,Thank for replying,
One of the differences between the default configurations of Wildfly 9 and 10(or higher) is in the managed-executor-services of the ee subsystem
(core-threads and max-threads attributes are missing) which causes thread-pool related issues in the latter, typically when there are long running
tasks on archive or multiple association requests at the same time. Hence to make Wildfly 10(or higher) behave like default in Wildfly 9,
adjust the managed-executor-services configuration using JBoss CLI as given below:
[standalone@localhost:9990 /] /subsystem=ee/managed-executor-service=default:undefine-attribute(name=hung-task-threshold) [standalone@localhost:9990 /] /subsystem=ee/managed-executor-service=default:write-attribute(name=long-running-tasks,value=true) [standalone@localhost:9990 /] /subsystem=ee/managed-executor-service=default:write-attribute(name=core-threads,value=2) [standalone@localhost:9990 /] /subsystem=ee/managed-executor-service=default:write-attribute(name=max-threads,value=100) [standalone@localhost:9990 /] /subsystem=ee/managed-executor-service=default:write-attribute(name=queue-length,value=0)
<managed-executor-service name="default" jndi-name="java:jboss/ee/concurrency/executor/default" context-service="default" hung-task-threshold="60000" keepalive-time="5000"/>
<managed-executor-service name="default" jndi-name="java:jboss/ee/concurrency/executor/default" context-service="default" long-running-tasks="true" core-threads="2" max-threads="100" keepalive-time="5000" queue-length="0"/>
With next version you will be able to log and disable reverse lookup: https://github.com/dcm4che/dcm4chee-arc-light/issues/1360
core-threads="2" to this
core-threads="4"
? Could we see an improvement with out compromising the service ? Just wondering ...core-threads
has a significant effect to the performance. s.: