Robert Stoll
0ea1dea99d
[doc] unhandled vs empty vs ignore #27443
2019-12-17 14:24:32 +01:00
Patrik Nordwall
00fc33d0a5
Timout await extension initialization, #28301 ( #28340 )
...
* use the existing creation-timeout config
* and error message about the typical mistake of accessing
SerializationExtension from constructor of serializer
* mention in docs
2019-12-17 14:19:42 +01:00
Johan Andrén
4df5376dcb
Docs on fromSinkAndSource #25468 ( #28349 )
2019-12-16 15:01:45 +01:00
Johan Andrén
8a019f86a1
JFR-based remoting flight recorder #26282
2019-12-16 11:45:13 +01:00
Patrik Nordwall
7ddbaf3852
Merge pull request #28361 from tegonal/persistence-style-1
...
[doc] adjust link text to next section
2019-12-12 13:57:48 +01:00
Arnout Engelen
2a812b7dc6
stream operator docs: example above RS semantics ( #28357 )
2019-12-12 11:07:16 +00:00
Patrik Nordwall
d115b61821
Merge pull request #28360 from WadeWaldron/stash-docs
...
Adding a clarification to the Akka Classic stash documentation about what happens when an actor is restarted.
2019-12-12 11:59:10 +01:00
Robert Stoll
ded2373941
[doc] an for a better flow ( #28359 )
...
* [doc] `an` for a better flow
* [doc] fix typo `an` instead of `a`
* [doc] more `an` vs `a`
* [doc] add `a` for a better flow
* [doc] typo processes
* [doc] `in case` instead of `due to that`
* [doc] rephrase stashing discard reasons
2019-12-12 09:32:09 +01:00
Robert Stoll
569ff0495a
[doc] adjust link text to next section
...
and add the missing `the`
2019-12-12 06:41:26 +01:00
wadewaldron
325209b65f
Adding a clarification to the Akka Classic stash documentation about what happens when an actor is restarted.
2019-12-11 15:42:30 -06:00
Michał Sieczkowski
3c1c06fb88
Fix a single grammar error in docs ( #28352 )
2019-12-11 07:45:13 -08:00
Christopher Batey
17533f077c
Example for intersperse ( #28343 )
2019-12-11 15:39:41 +01:00
Patrik Nordwall
75c5155582
remove logging of full config in ConfigDocSpec ( #28314 )
...
* changed to compile only, since it's not testing anything
2019-12-11 12:18:07 +01:00
Patrik Nordwall
b99db2a501
Remove wrong import from hello world doc sample, #28169 ( #28345 )
2019-12-11 08:00:15 +00:00
Johan Andrén
653d05e7d6
Source.unfold examples ( #28081 )
2019-12-09 15:32:50 +01:00
Robert Stoll
fc48184a1e
[doc] add to for a better flow ( #28325 )
...
* [doc] add `to` for a better flow
* Accidentally introduced empty line when resolving conflict
2019-12-09 11:45:03 +01:00
Brian Wignall
10e61e816f
Fix typos ( #28326 )
2019-12-09 08:41:55 +01:00
Patrik Nordwall
be5a17aeae
attempt to fix v1.class does not exist ( #28309 )
...
* sometimes I see v1.class does not exist error from incremental compiler
* could be because we have `object v1` and `trait V1` in same package
2019-12-06 16:48:05 +01:00
Robert Stoll
1062a97ee8
[doc] improve blog post actor text ( #28320 )
2019-12-06 16:43:50 +01:00
Robert Stoll
a5ed9ee262
[doc] add a for a better flow ( #28322 )
2019-12-06 16:43:17 +01:00
Robert Stoll
b706dbcbd3
[doc] add the for a better flow ( #28319 )
2019-12-06 16:42:48 +01:00
Johan Andrén
d344aa5112
Document JavaFlowSupport ( #28315 )
...
* Document JavaFlowSupport #23478
* Apidoc link didn't work out
2019-12-06 10:53:46 +01:00
Patrik Nordwall
517d2ae7b0
add whiteliest in serialization rolling update instruction ( #28313 )
2019-12-05 14:47:32 -08:00
Arnout Engelen
25ad10f893
Document asSubscriber stage ( #28128 )
...
* Unfortunately it seems the jdk9-only tests could not actually be compiled.
With these changes those can actually be compiled and ran again.
* Always link to jdk11 for java.* javadocs
* Update sbt-paradox-akka to fix linking to inner classes for javadoc
2019-12-05 16:40:05 +01:00
Patrik Nordwall
619a4494d5
Merge pull request #28308 from akka/wip-mdc-logback-config-patriknw
...
use %mdc logback config to output all MDC entries
2019-12-05 16:26:30 +01:00
Johannes Rudolph
702b6a7f41
actor: allow seamless access to untyped extensions given typed ActorSystem ( #28294 )
...
* actor: allow seamless access to untyped extensions given typed ActorSystem
* add overrides with concrete type for Java API everywhere
2019-12-05 16:01:22 +01:00
James Roper
eb64d05b8c
Manifest-less Jackson serializers, #28113 ( #28299 )
...
* This adds the ability to make Jackson serializers not output the class
name in the manifest in cases where type information is stored in a more
concise format in the JSON itself.
* documentation about rolling updates
* Ensure programatic bindings are search in Jackson serializer
2019-12-05 12:50:01 +01:00
Patrik Nordwall
c84e4d82fb
use %mdc logback config to output all MDC entries
...
* change logback doc example configurations
* change logback test configurations
* change docs around MDC
* change Slf4jLoggerSpec to use this instead
2019-12-05 11:47:37 +01:00
Patrik Nordwall
89165badbb
Structured log events, #28207 ( #28209 )
...
* Expanding the LogMarker to optionally include Map of additional
properties
* The name of the marker shows up as `tags` in Kibana
* The properties of the LogMarker are included as MDC entries, which
Logstash encoder automatically understands
* Implemented with classic eventStream logging so that it can be used
from all places without dependencies to Slf4j
* also means that it's possible to subscribe to LogEventWithMarker
to consume these events via the eventStream
* move marker definitions to RemoteLogMarker and ClusterLogMarker
* marker for dead letters
* marker for leader detained/allowed
* marker for member status changed
* markers for shard allocated and started
* test LogMarker with properties in Slf4jLoggerSpec
* doc note of the LogMarker definitions
2019-12-05 11:36:21 +01:00
Johan Andrén
cf0af245ef
New cluster node state diagram and other small improvements #24848
2019-12-04 12:39:31 +01:00
Robert Stoll
301be61566
[doc] do not repeat it for a better flow ( #28295 )
2019-12-04 08:58:41 +01:00
Robert Stoll
bb11efb354
[doc] rephrase don't model failure in protocol ( #28296 )
2019-12-04 08:58:10 +01:00
Xusheng Peng
7b943873fc
add local affinity support for group router #28174
2019-12-03 16:34:27 +01:00
Philippus Baalman
e338a5aecd
Update link to akka vavr sample project ( #28284 )
...
* Update link to akka vavr sample project
* Point link to 2.5 branch
2019-12-03 14:45:46 +01:00
Enno
4d04bb968b
Docs: add some API links to stream operator docs ( #28180 )
...
* Docs: add some API links to stream operator docs
* Complement CONTRIBUTION.md
* Switch to frameless Javadoc
2019-12-03 09:16:05 +01:00
Enno
ea60c364f2
Docs: use ref-links to pages ( #28288 )
2019-12-02 12:06:12 +01:00
Robert Stoll
a7d5ef1af6
[doc] add an for a better flow ( #28286 )
2019-12-02 11:43:13 +01:00
Robert Stoll
409f3a541b
[doc] typo, add missing response ( #28287 )
2019-12-02 11:42:25 +01:00
Robert Stoll
052050b1af
[doc] rephrase ask system to SpawnProtocol.spawn ( #28277 )
2019-11-29 15:23:31 +01:00
Robert Stoll
a336096517
[doc] typo add an for a better flow ( #28275 )
2019-11-29 14:48:55 +01:00
Robert Stoll
f918ead3a3
[doc] precise that guardian refers to user guardian ( #28276 )
2019-11-29 14:48:29 +01:00
Robert Stoll
be58b8614d
[doc] remove superfluous from ( #28278 )
2019-11-29 14:47:37 +01:00
Johan Andrén
4588a3904f
Include host and port in mdc if clustered or remote #28073
2019-11-28 11:35:11 +01:00
Robert Stoll
38c938124e
[doc] rephrase actor handles msgs of common super type ( #28265 )
...
* [doc] rephrase actor handles msgs of common super type
* Update akka-docs/src/main/paradox/typed/actors.md
Co-Authored-By: Arnout Engelen <github@bzzt.net>
2019-11-28 10:52:40 +01:00
Robert Stoll
5fdd63b011
[doc] typo, add missing a ( #28257 )
2019-11-27 17:52:17 +01:00
Robert Stoll
efb8a41e6e
[doc] typo, add missing are ( #28263 )
2019-11-27 17:51:32 +01:00
Enno
4946c957eb
Docs: link pages with TLS ( #28258 )
2019-11-27 17:33:44 +01:00
Jean-Baptiste Giraudeau
6d893fb571
Flow.delayWith allows custom delay for each element. ( #25000 )
2019-11-27 17:30:56 +01:00
Christopher Batey
8027f2123b
Example for mapConcat ( #28243 )
...
* Example for mapConcat
2019-11-26 19:39:42 +01:00
Johan Andrén
a9d545bf2b
Re-enable multicast tests ( #28252 )
...
* Re-enable multicast tests #28147
Some change on jenkins node a4 seems to have made the test pass again.
2019-11-26 18:45:31 +01:00