Sponsored Content
Operating Systems Linux Underutilization of Linux memory Post 303044203 by veeresh_15 on Sunday 16th of February 2020 06:27:41 PM
Old 02-16-2020
Thanks Neo for your comments and taking out time to perform those tests. I will also try checking my system's performance by turning off swap.
But if you or anyone else can help me understanding my current system behaviour, it will help me understand Linux Memory management better.
As part of my python application, we are making some rest api calls to Azure and using various azure services. Please let me know what other information i can provide for commenting on this behaviour?

Regards,
Veeresham
 

10 More Discussions You Might Find Interesting

1. Programming

memory layout in C on linux

Hi, Does any one know what tool to use to visualize how is memory layed out for C on linux systems. I mean how much stack portion is used in functional call. Where exactly does the argument to function sit in memory ? I have written small program pasted below. But I am not able to infer... (3 Replies)
Discussion started by: parasa
3 Replies

2. Programming

Determining free(available) memory in MV linux

HI I'm a rookie in C programming and I'm working in Monta Vista Linux. I have to write a program that displays free memory. I have memtester(allready written by someone else) and now I have to type how much amount of memory tester will test and I want that memtester finds out himself how much of... (11 Replies)
Discussion started by: trancedeejay
11 Replies

3. Red Hat

Linux memory usage

What's the best way to find out how much memory is being used/available? I tried using free, but I didn't quite understand the output. Can someone explain it? $ free total used free shared buffers cached Mem: 16304536 16256376 48160 0 ... (6 Replies)
Discussion started by: junkmail426
6 Replies

4. UNIX for Advanced & Expert Users

Memory managment - linux

Hi, I having problem with my linux machine it have 6Gb physical memory and somehow it always almost coming to the bottom neck and than it start writing to the swap memory you can see that there is more than 4G in cahce, is there any way to clean the cache or to limit it to 2Gb? host1... (6 Replies)
Discussion started by: Igal Malka
6 Replies

5. Red Hat

share memory on linux

how to list the orphaned shared memory? how to kill them so that shared mem is free again. thanks (9 Replies)
Discussion started by: melanie_pfefer
9 Replies

6. Linux

Linux Memory Track

Hi All, We are using the linux servers and need to track the memory utilization of the box. Could anyone advice how the same can be achived. :) (1 Reply)
Discussion started by: haitorajesh
1 Replies

7. Programming

Memory sniffing in linux

I am trying to create an application that will be able to sniff memory of other applications. I am not completely new to systems programming but I am not sure how to go about this task. I understand that accomplishing this mainly require these steps. 1: Get a list of processes 2: Find the... (2 Replies)
Discussion started by: mosey
2 Replies

8. Linux

Memory Usage on Linux server

Hi , As I am new to Linux server, I am facing some doubts like: On linux server virtual memory usage goes to 99%, but I have Threshold limit of 95%. So it crossed the threshold limit and alarmd. Yesterday I moniterd the server using TOP command, and found some of Tibco process was consuming... (4 Replies)
Discussion started by: Jaywantmm
4 Replies

9. Red Hat

about shared memory space in Linux !

Dear Friends , I am confused about shared memory in Linux . plz look @ the below output : $ df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 126G 61G 59G 52% / tmpfs 1.7G 0 1.7G 0% /dev/shm Here , I see that every time... (1 Reply)
Discussion started by: shipon_97
1 Replies

10. Red Hat

Shared memory in linux

Hello, I am using Linux os. $ df -k /dev/shm Filesystem 1K-blocks Used Available Use% Mounted on tmpfs 2023256 1065000 958256 53% /dev/shm $ Based on my google this, it is shared memory. What is this shared memory and where exactly it is used? Can you... (5 Replies)
Discussion started by: govindts
5 Replies
JYTHON.CONF(5)							File Formats Manual						    JYTHON.CONF(5)

NAME
jython.conf - Jython registry for system-wide options DESCRIPTION
When running jython(1) or jythonc(1), a number of properties may be set to customise Jython's behaviour. Properties can be assigned values in any of the following four ways. This list is arranged from lowest to highest priority; thus for instance a property set in a user's personal registry will override the same property set in the system-wide registry. Java system properties Jython options may be set in the standard Java system properties. However, since the jython and jythonc startup scripts take responsibility for starting the Java interpreter, it is unlikely that you will use this method of Jython configuration. Jython system-wide registry The system-wide registry is the file /etc/jython/jython.conf. It contains a number of lines of the form property=value. Lines that are empty or that begin with a hash (#) are ignored. User's personal registry The user's personal registry is the file ~/.jython. Its format is the same as for the system-wide registry. Command-line options Properties may be specified when running jython or jythonc at the command-line. They are set using command-line options of the form -Dproperty=value. PROPERTIES
The following properties may be set in the Jython registry. Other less used properties are also available; see the comments in the default system-wide registry for further details. If a property is marked (auto), the jython and jythonc startup scripts will attempt to set this property automatically, although it can still be overridden in the system or user registry or on the command-line. python.cachedir (auto) The directory to use for caches (currently just package information). This directory must be writable by the user. If the direc- tory is an absolute path then it is used as given; otherwise it is interpreted as relative to the root Jython directory (/usr/share/jython/). python.console The name of the console class to use when running Jython from the command prompt. An alternative console class that emulates GNU readline can be specified using this property. python.jythonc.classpath (auto) Extensions to the Java property java.class.path for use with jythonc. This is used to put extra classes on your Java compiler's classpath (and the core Java classes as well if your Java compiler requires them). python.jythonc.compiler (auto) The Java compiler to use with jythonc when turning generated Java code into Java class files. This should be the absolute path to a Java compiler, or the name of a compiler on your standard PATH. python.jythonc.compileropts Options to pass to the Java compiler when using jythonc. python.path (auto) The path on which Jython will look for additional python modules when importing. This variable has a similar function to CPython's PYTHONPATH environment variable. python.security.respectJavaAccessibility Normally, Jython can only provide access to public members of classes. However if this property is set to false and you are using Java 1.2 then Jython can access non-public fields, methods and constructors. python.verbose Sets the verbosity level for informative messages. All messages with at least the specified severity will be displayed. Valid val- ues in order of increasing verbosity are error, warning, message, comment and debug. SEE ALSO
jython(1), jythonc(1). If the Debian package jython-doc is installed, full documentation from the Jython authors will be available in /usr/share/doc/jython- doc/html/. AUTHOR
This manual page was prepared by Ben Burton <bab@debian.org> for the Debian GNU/Linux system (but may be used by others). It is based upon the official Jython documentation. September 2, 2001 JYTHON.CONF(5)
All times are GMT -4. The time now is 09:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy