pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: pkgsrc/net/syncthing



Le 2019-10-04 19:01, Nia Alarie a écrit :
Module Name:	pkgsrc
Committed By:	nia
Date:		Fri Oct  4 17:01:56 UTC 2019

Modified Files:
	pkgsrc/net/syncthing: Makefile distinfo

Log Message:
syncthing: Update to 1.3.0

This release adds the "databaseTuning" config option to adjust
parameters for the database size in use. The default is "auto" which
automatically determines appropriate parameters. The other options are
"small" (results in the parameters used previously, and used now for
small databases) and "large" (results in the new parameters for large
databases, regardless of the actual database size).
Bugfixes

#5985: Log spam and high CPU use if #include path is wrong in .stignore

Enhancements

    #5138: Rate limit can be very bursty
    #5948: Improve free space checking when syncing
    #5966: Database performance: improve situation with huge databases

Other issues

    #5924: Upgrade server JSON generator
#5991: lib/api: TestHostCheck never finishes with Go 1.13rc2 under Docker
    #5999: Allow providing your own ldflags for building


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 pkgsrc/net/syncthing/Makefile
cvs rdiff -u -r1.70 -r1.71 pkgsrc/net/syncthing/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Thanks Nia for the update!

Since I upgraded it, I get this kind of following notifications (and I had not before):
```
2019-10-07 08:54:11: Listen (BEP/quic): Accepting connection: read udp [::]:22000: recvfrom: host is down 2019-10-07 08:54:11: Listen (BEP/quic): Accepting connection: read udp [::]:22000: recvfrom: host is down 2019-10-07 08:54:11: Listen (BEP/quic): Accepting connection: read udp [::]:22000: recvfrom: host is down 2019-10-07 08:54:11: Listen (BEP/quic): Accepting connection: read udp [::]:22000: recvfrom: host is down 2019-10-07 08:54:11: Listen (BEP/quic): Accepting connection: read udp [::]:22000: recvfrom: host is down
```

Do you have any idea why and how to resolve it?

My syncthing instance runs on Xen domU and I have these NPF rules:
```
group "external" on wm0 {
  [...]
pass stateful in final family inet6 proto tcp to $sync_addr6 port 22000 pass stateful in final family inet6 proto udp to $sync_addr6 port 22000
  [...]
}
```

I have the following informations about port 22000:
```
# netstat -an | grep 2200
tcp6 0 0 *.22000 *.* LISTEN
udp6    8596      0  *.22000                *.*

# nmap -6 sync.triaxx.org -p 22000 -sU -sT

PORT      STATE         SERVICE
22000/tcp open          snapenetio
22000/udp open|filtered snapenetio
```


Home | Main Index | Thread Index | Old Index