This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.concurrent.locks.LockSupport; | |
import java.util.stream.StreamSupport; | |
public class ParallelStream { | |
public static int[] process(Iterable<Integer> iterable) { | |
return StreamSupport.stream(iterable.spliterator(), true) | |
.mapToInt(i -> { | |
LockSupport.parkNanos(1_000_000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sun.misc.Unsafe; | |
import javax.management.ObjectName; | |
import java.io.IOException; | |
import java.lang.management.ManagementFactory; | |
import java.lang.reflect.Field; | |
import java.nio.ByteBuffer; | |
import java.nio.ByteOrder; | |
import java.nio.channels.FileChannel; | |
import java.nio.charset.StandardCharsets; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import one.log.event.ILoggingEvent; | |
import one.log.event.OperationLogEvent; | |
import one.log.stat.StatCollector; | |
import one.log.stat.Statistics; | |
import one.nio.mgt.DiagnosticCommand; | |
import one.nio.os.BatchThread; | |
import java.io.BufferedReader; | |
import java.io.FileReader; | |
import java.util.regex.Matcher; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <jvmti.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
JNIEXPORT jint JNICALL | |
Agent_OnAttach(JavaVM* vm, char* options, void* reserved) { | |
if (options != NULL) { | |
int* addr = (int*)strtol(options, NULL, 0); | |
printf("vmoption [%p] = %d\n", addr, *addr); fflush(stdout); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Replaces implementation of Unsafe.allocateMemory/freeMemory | |
// to avoid long time-to-safepoint pauses. | |
// | |
// Compile: gcc -O3 -fno-omit-frame-pointer -fPIC -shared -olibunmalloc.so unmalloc.c | |
// | |
// Usage: java -agentpath:/path/to/libunmalloc.so ... | |
#include <jvmti.h> | |
#include <stdint.h> | |
#include <stdio.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sun.jvm.hotspot.debugger.Address; | |
import sun.jvm.hotspot.runtime.VM; | |
import sun.jvm.hotspot.tools.Tool; | |
import java.io.IOException; | |
import java.io.RandomAccessFile; | |
/** | |
* Changes -XX:MaxJavaStackTraceDepth flag to 1000000 in runtime | |
* without restarting the JVM. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2020 Andrei Pangin | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package string; | |
import org.openjdk.jmh.annotations.*; | |
import java.util.Random; | |
import java.util.concurrent.TimeUnit; | |
@BenchmarkMode(Mode.AverageTime) | |
@Fork(1) | |
@State(Scope.Thread) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2020 Andrei Pangin | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2018 Andrei Pangin | |
* | |
* This is a specialized Java port of the FlameGraph script available at | |
* https://github.com/brendangregg/FlameGraph/blob/master/flamegraph.pl | |
* | |
* Copyright 2016 Netflix, Inc. | |
* Copyright 2011 Joyent, Inc. All rights reserved. | |
* Copyright 2011 Brendan Gregg. All rights reserved. | |
* |